Exclude unsupported Python/Django combinations

Use a more self-explanatory build job name for tests
This commit is contained in:
Peter Bittner 2022-01-10 02:56:02 +01:00
parent fc8dd0bb48
commit 2ec73d60c5

View file

@ -9,10 +9,10 @@ on:
- master
jobs:
build:
python-django:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
fail-fast: false
matrix:
python-version:
- '3.6'
@ -24,6 +24,10 @@ jobs:
- '2.2'
- '3.2'
- '4.0'
exclude:
- { django-version: '2.2', python-version: '3.10' }
- { django-version: '4.0', python-version: '3.6' }
- { django-version: '4.0', python-version: '3.7' }
steps:
- uses: actions/checkout@v2