summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/test.yml15
1 files changed, 10 insertions, 5 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index d5fe93f..5c82537 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -6,7 +6,7 @@ on:
jobs:
build:
- name: Python ${{ matrix.python-version }} / ${{ matrix.tox-environment }}
+ name: Python ${{ matrix.python-version }} / ${{ matrix.django-family }}
runs-on: ubuntu-latest
strategy:
@@ -16,12 +16,17 @@ jobs:
- 3.4
- 3.6
- pypy3
- tox-environment:
- - django11
- - django22
+ django-family:
+ - 111
+ - 22
+ exclude:
+ - python-version: pypy3
+ django-family: 111
+ - python-version: 3.4
+ django-family: 22
env:
- TOXENV: ${{ matrix.tox-environment }}
+ TOXENV: django${{ matrix.django-family }}
steps:
- uses: actions/checkout@v2