From f06225034ed7a553bd7b720c76c6d1538c3c4786 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Barrois?= Date: Tue, 2 Mar 2021 15:46:21 +0100 Subject: Exclude invalid Django/Python combinations --- .github/workflows/test.yml | 15 ++++++++++----- 1 file 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 -- cgit v1.2.1