Skip to content

Commit c00b276

Browse files
Test on Mac
1 parent 0bbb709 commit c00b276

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,17 @@ jobs:
1717
- uses: pre-commit/[email protected]
1818
test:
1919
name: Test
20-
runs-on: ubuntu-latest
20+
runs-on: ${{ matrix.os }}
2121
strategy:
2222
matrix:
23+
# Use macos-13 because pip binary packages for ARM aren't
24+
# available for many dependencies
25+
os: [macos-13, ubuntu-latest]
2326
python-version: ["3.9", "3.10", "3.11"]
27+
exclude:
28+
# Just run macos tests on one Python version
29+
- os: macos-13
30+
python-version: "3.9"
2431
steps:
2532
- uses: actions/checkout@v4
2633
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)