From 621d756542f23d1e2f7679bffe6fcb81b82df005 Mon Sep 17 00:00:00 2001 From: Diederik van der Boor Date: Mon, 16 Oct 2023 14:27:56 +0200 Subject: [PATCH] Update GitHub actions test matrix --- .github/workflows/tests.yaml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 5f13947..b8dc3da 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -16,17 +16,14 @@ jobs: fail-fast: false matrix: include: - # Django 2.2 - - django: "2.2" - python: "3.6" - # Django 3.1 - - django: "3.1" - python: "3.6" # Django 3.2 - django: "3.2" - python: "3.6" + python: "3.8" # Django 4.0 - - django: "4.0b1" + - django: "4.2" + python: "3.10" + # Django 5.0 + - django: "5.0a1" python: "3.10" steps: @@ -51,4 +48,4 @@ jobs: echo "Python ${{ matrix.python }} / Django ${{ matrix.django }}" coverage run --rcfile=.coveragerc runtests.py codecov - continue-on-error: ${{ contains(matrix.django, '4.0') }} + continue-on-error: ${{ contains(matrix.django, '5.0') }}