From 48066e49f3b297bd440efc5f182a8c3fac9fb5a6 Mon Sep 17 00:00:00 2001 From: Andy Babic Date: Wed, 15 Jan 2025 21:31:53 +0000 Subject: [PATCH] Tweak test matrices to get faster feedback for latest python/django/wagtail versions --- .github/workflows/test.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c6cb0d1..02c90bb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,13 +24,13 @@ env: PYTHON_LATEST: '3.11' jobs: - test-sqlite: + test-latest: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11"] - django: ["4.2"] - wagtail: ["5.2"] + python-version: ["3.13"] + django: ["5.1"] + wagtail: ["6.3"] db: ["sqlite"] steps: - uses: actions/checkout@v4 @@ -60,11 +60,13 @@ jobs: if-no-files-found: ignore retention-days: 1 - test-postgres: + test-legacy: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12"] + django: ["4.2"] + wagtail: ["5.2", "6.1", "6.2"] db: ["postgres"] services: @@ -106,8 +108,8 @@ jobs: coverage: runs-on: ubuntu-latest needs: - - test-sqlite - - test-postgres + - test-latest + - test-legacy steps: - uses: actions/checkout@v4