Skip to content

Commit eb80f2a

Browse files
Update python-app.yml
1 parent 045995e commit eb80f2a

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

.github/workflows/python-app.yml

+8-12
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,26 @@
11
name: Test Python Versions
2+
23
on: [push, pull_request]
34

45
jobs:
5-
66
test:
7-
8-
runs-on: windows-latest
7+
runs-on: ${{ matrix.os }}
98
strategy:
109
fail-fast: false
1110
matrix:
11+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13]
1212
python-version: ['3.13', '3.12']
13-
14-
# python-version: ['3.13', '3.12', '3.9', '3.10', '3.11', '3.8']
15-
13+
1614
env:
17-
PIP_NO_PYTHON_VERSION_WARNING: 1
18-
15+
PIP_NO_PYTHON_VERSION_WARNING: 1
1916

2017
steps:
2118
- name: Checkout repository
2219
uses: actions/checkout@v4
23-
- name: Show pip cache directory
24-
run: |
25-
pip cache dir
20+
2621
- name: Set up Python ${{ matrix.python-version }}
2722
# uses: actions/setup-python@v5
28-
uses: priyagupta108/setup-python@issue-1034
23+
uses: priyagupta108/setup-python@test-1034-fix
2924
with:
3025
python-version: ${{ matrix.python-version }}
3126
cache: 'pip'
@@ -36,3 +31,4 @@ jobs:
3631
run: |
3732
python -m pip install --upgrade pip
3833
pip install -r requirements/requirements.txt
34+

0 commit comments

Comments
 (0)