Skip to content

Commit d23ac0e

Browse files
Update python-app.yml
1 parent ccd2e3a commit d23ac0e

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

.github/workflows/python-app.yml

+11-14
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,30 @@ on: [push, pull_request]
44

55
jobs:
66
test:
7-
runs-on: ubuntu-latest
7+
runs-on: ${{ matrix.os }}
88
strategy:
99
fail-fast: false
10+
1011
matrix:
11-
python-version: ['3.13', '3.13t']
12+
python-version: ['3.13.1', '3.13t']
13+
os: ["windows-latest", "ubuntu-latest", "macos-13", macos-latest]
1214
steps:
1315
- name: Checkout repository
1416
uses: actions/checkout@v4
1517

16-
# - name: Set up Python ${{ matrix.python-version }}
17-
# # uses: actions/setup-python@v4
18-
# uses: priyagupta108/setup-python@test-pr-973
19-
# with:
20-
# python-version: ${{ matrix.python-version }}
21-
22-
- name: Install
23-
uses: quansight-labs/setup-python@v5
18+
- name: Set up Python ${{ matrix.python-version }}
19+
# uses: actions/setup-python@v5
20+
# uses: priya-kinthali/setup-python@freethread-pr-319
21+
uses: priyagupta108/setup-python@test-pr-973
22+
2423
with:
25-
python-version: ${{ matrix.python-version }}
26-
27-
24+
# architecture: x64-freethreaded
25+
python-version: ${{ matrix.python-version }}
2826

2927
- name: Install dependencies
3028
run: |
3129
python -m pip install --upgrade pip
3230
pip install -r requirements.txt
33-
3431
- name: Run tests
3532
run: |
3633
python test_script.py

0 commit comments

Comments
 (0)