summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2021-03-02 15:46:21 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2021-03-02 16:11:06 +0100
commit645b01ba15c258c5fdd114e1bf526c527b7e9546 (patch)
tree9662c76cd68073718c0bada895f953253efdaeed
parent02f579ae19ddce5cc04611f4bade664634567e3f (diff)
downloadsemantic-version-645b01ba15c258c5fdd114e1bf526c527b7e9546.tar.gz
Exclude invalid Django/Python combinations
-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