diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2021-03-02 15:46:21 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2021-03-02 16:19:57 +0100 |
commit | f06225034ed7a553bd7b720c76c6d1538c3c4786 (patch) | |
tree | bc55b86ccabca8f4afa69e80dbb3f3b5d6519f16 /.github/workflows | |
parent | d15b65b8331f2c8b783964fac4326d44170cf4e6 (diff) | |
download | semantic-version-f06225034ed7a553bd7b720c76c6d1538c3c4786.tar.gz |
Exclude invalid Django/Python combinations
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 15 |
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 |