Skip to content

Commit 17eb818

Browse files
authored
Run tests against ARM macos-14 (#615)
* Run tests against ARM macos-14 https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/ * Skip Python 3.8 and 3.9 on macos-14
1 parent 70cc0c9 commit 17eb818

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@ jobs:
1212
matrix:
1313
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1414
numpy: [0, 1]
15-
os: [ubuntu-latest, macos-latest, windows-latest]
15+
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
16+
# Skip 3.8 and 3.9 on macos-14 - it only has 3.10+
17+
exclude:
18+
- python-version: "3.8"
19+
os: macos-14
20+
- python-version: "3.9"
21+
os: macos-14
1622
steps:
1723
- uses: actions/checkout@v4
1824
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)