Skip to content

Commit cdbcbc0

Browse files
committed
test
1 parent 0f5d489 commit cdbcbc0

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,22 +167,28 @@ jobs:
167167

168168
windows:
169169
name: "Windows: ${{ matrix.platform.target }}"
170-
runs-on: "${{ matrix.platform.os }}"
170+
runs-on: '${{ matrix.platform.os }}'
171171
strategy:
172172
matrix:
173173
platform:
174174
- target: x64
175175
os: windows-latest
176-
interpreter: 3.9 3.10 3.11 3.12 3.13
176+
py_arch: 'x64'
177+
interpreter: '3.13'
177178
- target: x86
179+
py_arch: 'x86'
178180
os: windows-latest
179-
interpreter: 3.9 3.10 3.11 3.12
181+
interpreter: '3.12'
182+
- target: aarch64
183+
py_arch: 'arm64'
184+
os: windows-11-arm
185+
interpreter: '3.13'
180186
steps:
181187
- uses: actions/checkout@v4
182188
- uses: actions/setup-python@v5
183189
with:
184-
python-version: "3.12"
185-
architecture: ${{ matrix.platform.target }}
190+
python-version: "3.13"
191+
architecture: ${{ matrix.platform.py_arch }}
186192
- uses: dtolnay/rust-toolchain@stable
187193
- name: Build wheels
188194
uses: PyO3/maturin-action@v1

0 commit comments

Comments
 (0)