Skip to content

Commit 486858e

Browse files
committed
ci: test macOS and Windows on latest Python only
CI started failing recently, because new macos-latest runs on arm, which does not include all older Python versions. As workaround and for the sake of a slimmer test matrix, we drop all but latest Python tests on macOS and Windows. The remaining matrix should still give us reasonable coverage. Related discussion in: secure-systems-lab#792 (comment) Signed-off-by: Lukas Puehringer <[email protected]>
1 parent 34a4295 commit 486858e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/_test.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,17 @@ jobs:
88
test:
99
strategy:
1010
fail-fast: false
11-
# Run tests on each OS/Python combination
1211
matrix:
1312
python-version: ["3.8", "3.9", "3.10", "3.11"]
14-
os: [ubuntu-latest, macos-latest, windows-latest]
13+
os: [ubuntu-latest]
1514
toxenv: [py]
16-
1715
include:
16+
- python-version: "3.11"
17+
os: macos-latest
18+
toxenv: py
19+
- python-version: "3.11"
20+
os: windows-latest
21+
toxenv: py
1822
- python-version: "3.11"
1923
os: ubuntu-latest
2024
toxenv: purepy311

0 commit comments

Comments
 (0)