Skip to content

Commit c07391c

Browse files
authored
Merge pull request #33 from tonybaloney/tonybaloney-patch-1
Test other versions of Python in CI
2 parents f02e0f3 + c82e897 commit c07391c

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/python-app.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,20 @@ 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:
1823
- uses: actions/checkout@v2
19-
- name: Set up Python 3.10
24+
- name: Setup python
2025
uses: actions/setup-python@v2
2126
with:
22-
python-version: "3.10"
27+
python-version: ${{ matrix.python_version }}
28+
architecture: x64
2329
- name: Install dependencies
2430
run: |
2531
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)