Skip to content

Commit 786cad0

Browse files
committed
fix macos workflows
1 parent ce46786 commit 786cad0

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ jobs:
3636
strategy:
3737
fail-fast: false # If one platform fails, allow the rest to keep testing.
3838
matrix:
39+
python-architecture: ["x64"]
3940
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
4041
os: [
41-
"macos-latest",
42+
"macos-13",
4243
"ubuntu-latest",
4344
"windows-latest",
4445
]
@@ -47,6 +48,11 @@ jobs:
4748
- python-version: "3.12"
4849
os: "ubuntu-latest"
4950
rust: "1.56"
51+
- python-version: "3.12"
52+
python-architecture: "arm64"
53+
os: "macos-latest"
54+
rust: "stable"
55+
5056

5157
steps:
5258
- uses: actions/checkout@v4
@@ -55,7 +61,7 @@ jobs:
5561
uses: actions/setup-python@v5
5662
with:
5763
python-version: ${{ matrix.python-version }}
58-
architecture: x64
64+
architecture: ${{ matrix.python-python-architecture }}
5965

6066
- name: Install Rust toolchain
6167
uses: dtolnay/rust-toolchain@master

0 commit comments

Comments
 (0)