We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
win_arm64
1 parent 87a13e2 commit 962aab6Copy full SHA for 962aab6
.github/workflows/test.yml
@@ -15,19 +15,25 @@ concurrency:
15
16
jobs:
17
pytest:
18
- runs-on: ${{ matrix.os }}-latest
+ runs-on: ${{ matrix.os }}
19
strategy:
20
matrix:
21
os:
22
- - ubuntu
23
- - windows
24
- - macos
+ - ubuntu-latest
+ - windows-latest
+ - windows-11-arm
25
+ - macos-latest
26
python:
27
- '3.9'
28
- '3.10'
29
- '3.11'
30
- '3.12'
31
- '3.13'
32
+ exclude:
33
+ - os: windows-11-arm
34
+ python: '3.9'
35
36
+ python: '3.10'
37
fail-fast: false
38
steps:
39
- uses: actions/checkout@v4
0 commit comments