move to github actions and change linters #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Django Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
strategy: | |
matrix: | |
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] | |
django-version: ['2.0', '2.1', '2.2', '3.0', '3.1', '3.2', '4.0', '4.1', '4.2', '5.0', '5.1'] | |
os-version: [ubuntu-18.04, ubuntu-22.04] | |
exclude: | |
- python-version: '3.5' | |
os-version: ubuntu-22.04 | |
- python-version: '3.6' | |
os-version: ubuntu-22.04 | |
- python-version: '3.7' | |
os-version: ubuntu-22.04 | |
runs-on: ${{ matrix.os-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools packaging | |
python -m pip install Django==${{ matrix.django-version }} pytest pytest-django | |
- name: Run Django tests | |
run: | | |
python -m pytest |