mirror of
https://github.com/jazzband/dj-database-url.git
synced 2026-03-16 22:20:24 +00:00
Don't run tests with Django 4.0 on Python 3.7.
This commit is contained in:
parent
36f37c38fc
commit
5702e647b0
1 changed files with 4 additions and 1 deletions
5
.github/workflows/test.yml
vendored
5
.github/workflows/test.yml
vendored
|
|
@ -6,11 +6,14 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.7", "3.8", "3.9", "3.10"]
|
||||
django-version: [3.2, 4.0]
|
||||
django-version: ["3.2", "4.0"]
|
||||
exclude:
|
||||
# Python 3.6 is not compatible with 4.0
|
||||
- python-version: 3.6
|
||||
django-version: 4.0
|
||||
# Python 3.7 is not compatible with 4.0
|
||||
- python-version: 3.7
|
||||
django-version: 4.0
|
||||
fail-fast: false
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
|
|
|||
Loading…
Reference in a new issue