Skip to content

chore: Prepare v1.51 maintenance release #7285

chore: Prepare v1.51 maintenance release

chore: Prepare v1.51 maintenance release #7285

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
- v1.51
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Pre-Commit
run: python -m pip install pre-commit && pre-commit install
- name: Load cached Pre-Commit Dependencies
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit/
key: pre-commit-4|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Execute Pre-Commit
run: pre-commit run --show-diff-on-failure --color=always --all-files
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: v1-venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install --no-interaction
- name: Set pythonpath
run: echo "PYTHONPATH=$PWD" >> $GITHUB_ENV
- name: Run mypy
if: matrix.python-version == '3.8'
run: poetry run mypy starlite tests
- name: Run pyright
if: matrix.python-version == '3.8'
run: poetry run pyright starlite tests
- name: Test
if: matrix.python-version != '3.11'
run: poetry run pytest
- name: Test with Coverage
if: matrix.python-version == '3.11'
run: poetry run pytest docs/examples tests --cov=starlite --cov-report=xml
- uses: actions/upload-artifact@v3
if: matrix.python-version == '3.11'
with:
name: coverage-xml
path: coverage.xml
codeql:
needs:
- test
- validate
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL With Dependencies
if: github.event_name == 'push'
uses: github/codeql-action/init@v2
- name: Initialize CodeQL Without Dependencies
if: github.event_name == 'pull_request'
uses: github/codeql-action/init@v2
with:
setup-python-dependencies: false
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2