mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-16 22:20:25 +00:00
Exclude unsupported Python/Django combinations
Use a more self-explanatory build job name for tests
This commit is contained in:
parent
fc8dd0bb48
commit
2ec73d60c5
1 changed files with 6 additions and 2 deletions
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue