From 1047f10bb8d0af5c6baefa13f751bce4d00eec30 Mon Sep 17 00:00:00 2001 From: ross-spencer Date: Wed, 20 Nov 2024 10:03:26 +0100 Subject: [PATCH] WIP: all --- .github/workflows/unit-tests-all.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests-all.yml b/.github/workflows/unit-tests-all.yml index 9e9a294..64c0819 100644 --- a/.github/workflows/unit-tests-all.yml +++ b/.github/workflows/unit-tests-all.yml @@ -11,9 +11,16 @@ jobs: continue-on-error: ${{ matrix.experimental }} strategy: matrix: - os: [macos-latest] - python-version: ["3.11.x"] + os: [ubuntu-latest, macos-latest] + python-version: ["3.11.x", "3.12.x"] experimental: [false] + include: + - os: ubuntu-latest + python-version: "3.13.x" + experimental: true + - os: macos-latest + python-version: "3.13.x" + experimental: true steps: - name: "check out repository" uses: "actions/checkout@v4"