From 5f854b64404bf90fd143b2ca91bfd7002b15cd0b Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Wed, 24 Apr 2024 20:48:44 +0300 Subject: [PATCH] workflows: Only test old Pythons on linux * This fixes current CI (new mac runners do not have old pythons) * This is also sensible: running the complete matrix seems wasteful Signed-off-by: Jussi Kukkonen --- .github/workflows/_test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index aa65b9b0..e36e89b8 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -37,7 +37,12 @@ jobs: strategy: matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest] + include: + - python-version: "3.12" + os: macos-latest + - python-version: "3.12" + os: windows-latest runs-on: ${{ matrix.os }}