Skip to content

Bump pypa/gh-action-pypi-publish from 1.5.0 to 1.8.11 #91

Bump pypa/gh-action-pypi-publish from 1.5.0 to 1.8.11

Bump pypa/gh-action-pypi-publish from 1.5.0 to 1.8.11 #91

Workflow file for this run

name: Run quality checks
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
- run: pip install --user --upgrade nox
- run: nox -s lint
sort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
- run: pip install --user --upgrade nox
- run: nox -s sort
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
- run: pip install --user --upgrade nox
- run: nox -s format
types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
- run: pip install --user --upgrade nox
- run: nox -s types
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
django: ["3.2.0", "4.0.0", "4.1.0", "4.2.0"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install --user --upgrade nox
- run: nox -s "test(python='${{ matrix.python }}', django='${{ matrix.django }}')"