Skip to content

Modernize CI setup, test Django 4.2 and Python 3.11 #41

Modernize CI setup, test Django 4.2 and Python 3.11

Modernize CI setup, test Django 4.2 and Python 3.11 #41

Workflow file for this run

name: Checks
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
PY_COLORS: '1'
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
env:
- isort
- flake8
- pylint
- bandit
- package
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install build tools
run: |
python -m pip install tox wheel --disable-pip-version-check
- name: Run ${{ matrix.env }}
run: tox -e ${{ matrix.env }}