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:19:57 +0100
commitf06225034ed7a553bd7b720c76c6d1538c3c4786 (patch)
treebc55b86ccabca8f4afa69e80dbb3f3b5d6519f16
parentd15b65b8331f2c8b783964fac4326d44170cf4e6 (diff)
downloadsemantic-version-f06225034ed7a553bd7b720c76c6d1538c3c4786.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