Skip to content

Commit f098950

Browse files
Update python-app.yml
1 parent 4b5d92a commit f098950

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/python-app.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,18 @@ on: [push]
44

55
jobs:
66
reproduce-issue:
7-
runs-on: windows-latest
7+
strategy:
8+
matrix:
9+
os: [ubuntu-latest, windows-latest, macos-latest]
10+
runs-on: ${{ matrix.os }}
811
steps:
912
- uses: actions/checkout@v4
10-
13+
1114
- name: Set up Python 3.9.13
1215
uses: actions/setup-python@v4
1316
with:
1417
python-version: 3.9.13
15-
1618

1719
- name: Install dependencies
1820
run: |
1921
pip install -r requirements.txt
20-

0 commit comments

Comments
 (0)