Skip to content

Commit 791a50f

Browse files
authored
Update python-app.yml
1 parent f02e0f3 commit 791a50f

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/python-app.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,19 @@ on:
1212
jobs:
1313
build:
1414

15-
runs-on: ubuntu-latest
16-
15+
name: Test ${{ matrix.os }} Python ${{ matrix.python_version }}
16+
runs-on: ${{ matrix.os }}
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
os: ["macos-11", ubuntu-20.04, "windows-latest"]
21+
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
1722
steps:
18-
- uses: actions/checkout@v2
19-
- name: Set up Python 3.10
23+
- name: Setup python
2024
uses: actions/setup-python@v2
2125
with:
22-
python-version: "3.10"
26+
python-version: ${{ matrix.python_version }}
27+
architecture: x64
2328
- name: Install dependencies
2429
run: |
2530
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)