Skip to content

Commit 0d4c4a6

Browse files
committed
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 <[email protected]>
1 parent ffc1c3f commit 0d4c4a6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/_test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,12 @@ jobs:
3737
strategy:
3838
matrix:
3939
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
40-
os: [ubuntu-latest, macos-latest, windows-latest]
40+
os: [ubuntu-latest]
41+
include:
42+
- python-version: "3.12"
43+
os: mac-latest
44+
- python-version: "3.12"
45+
os: windows-latest
4146

4247
runs-on: ${{ matrix.os }}
4348

0 commit comments

Comments
 (0)