Skip to content

Commit 90c170f

Browse files
committed
Test on ubuntu-latest, macos-latest, windows-latest
1 parent dfd8d5e commit 90c170f

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.github/workflows/unit-tests.yml

+22-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,29 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ ubuntu-20.04, macos-latest, windows-latest ]
18+
os: [ ubuntu-latest, macos-latest, windows-latest ]
1919
python-version: [ 3.6, 3.7, 3.8, 3.9, '3.10' ]
20+
exclude:
21+
# GHA doesn't list 3.6 for ubuntu-22.04
22+
- os: ubuntu-latest
23+
python-version: "3.6"
24+
25+
# MacOS 14.4.1 for arm64 doesn't support Python < 3.8
26+
- os: macos-latest
27+
python-version: "3.6"
28+
- os: macos-latest
29+
python-version: "3.7"
30+
31+
include:
32+
# GHA doesn't list 3.6 for ubuntu-22
33+
- os: ubuntu-20.04
34+
python-version: "3.6"
35+
36+
# MacOS 13 required for Python < 3.8
37+
- os: macos-13
38+
python-version: "3.6"
39+
- os: macos-13
40+
python-version: "3.7"
2041

2142
steps:
2243
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)