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