summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml33
1 files changed, 20 insertions, 13 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index a4a1d3d..67e1fbf 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,29 +12,36 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version:
- - 3.4
- - 3.6
- - pypy3
- django-family:
- - 111
- - 22
include:
+ # Django 1.11: 3.4, 3.7
+ - python-version: 2.7
+ django-family: 111
+ - python-version: 3.4
+ django-family: 111
+ - python-version: 3.7
+ django-family: 111
+ - python-version: pypy3
+ django-family: 111
+
+ # Django 2.2: 3.5, 3.7, 3.8
+ - python-version: 3.5
+ django-family: 22
- python-version: 3.7
django-family: 22
- python-version: 3.8
django-family: 22
- - python-version: 3.7
+ - python-version: pypy3
+ django-family: 22
+
+ # Django 3.1: Python 3.6, 3.8, 3.9
+ - python-version: 3.6
django-family: 31
- python-version: 3.8
django-family: 31
- - python-version: pypy3
+ - python-version: 3.9
django-family: 31
- exclude:
- python-version: pypy3
- django-family: 111
- - python-version: 3.4
- django-family: 22
+ django-family: 31
env:
TOXENV: django${{ matrix.django-family }}