Skip to content

Commit 1c681b9

Browse files
Update GitHub Actions workflow for Python versions
1 parent ec932b8 commit 1c681b9

1 file changed

Lines changed: 9 additions & 13 deletions

File tree

.github/workflows/main.yml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: windows-latest
12-
13-
# strategy:
14-
# fail-fast: false
15-
# matrix:
16-
# # python-version: ["3.13", "3.14", "3.13t", "3.14t", "3.13.1", "3.14.1", "3.13.1", "3.14.1"]
17-
# # python-version: ["3.14t", "3.14.4t"]
11+
# runs-on: windows-11-arm
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
python-version: ["3.13", "3.14", "3.13t", "3.14t", "3.13.10", "3.14.1", "3.13.10t", "3.14.1t"]
17+
# python-version: ["3.14t", "3.14.4t", ]
18+
os: [windows-11-arm, windows-latest]
1819
steps:
1920
- name: Checkout code
2021
uses: actions/checkout@v6
@@ -23,14 +24,9 @@ jobs:
2324
# uses: actions/setup-python@v6
2425
uses: priyagupta108/setup-python@pip-root-user-warning
2526
with:
26-
# python-version: ${{ matrix.python-version }}
27-
python-version: |
28-
3.13
29-
3.14
27+
python-version: ${{ matrix.python-version }}
3028

3129
- name: Install dependencies
3230
run: |
3331
python -m pip install --upgrade pip
3432
pip install -r requirements.txt
35-
36-

0 commit comments

Comments
 (0)