Skip to content

Commit 84a7146

Browse files
committed
Add CI for macos
1 parent 85b71df commit 84a7146

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,24 @@ env:
1515

1616
jobs:
1717
tests:
18-
runs-on: ubuntu-latest
18+
runs-on: ${{ matrix.os }}
1919
strategy:
2020
matrix:
21-
python-version: ["3.10", "3.11", "3.12", "3.13"]
21+
include:
22+
- os: "ubuntu-24.04"
23+
python-version: "3.11"
24+
- os: "ubuntu-24.04"
25+
python-version: "3.12"
26+
- os: "ubuntu-24.04"
27+
python-version: "3.13"
28+
29+
# macos 14 image is x86 based
30+
- os: macos-13
31+
python-version: "3.12"
32+
33+
# macos 14 image is arm64 based
34+
- os: macos-14
35+
python-version: "3.12"
2236

2337
steps:
2438
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)