Skip to content

Commit 88ab3f3

Browse files
committed
Add test run on other OS
1 parent b21169a commit 88ab3f3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,19 @@ jobs:
7676
os: [ "ubuntu-latest" ]
7777
# Test against all security and bugfix versions: https://devguide.python.org/versions/
7878
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
79+
include:
80+
# Test other OS's for a 'very stable' Python version too
81+
- os: "windows-latest"
82+
python-version: "3.11"
83+
- os: "macos-latest"
84+
python-version: "3.11"
85+
# Include other OS for latest Python
86+
# because these seem to be the flakiest from experience
87+
# so are worth the extra testing
88+
- os: "windows-latest"
89+
python-version: "3.13"
90+
- os: "macos-latest"
91+
python-version: "3.13"
7992
runs-on: "${{ matrix.os }}"
8093
defaults:
8194
run:

0 commit comments

Comments
 (0)