Skip to content
This repository was archived by the owner on Oct 29, 2023. It is now read-only.

Commit 39a1731

Browse files
authored
GH Actions multiple Python versions (#86)
1 parent 7c8f325 commit 39a1731

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@ jobs:
1010

1111
runs-on: ubuntu-latest
1212

13+
strategy:
14+
matrix:
15+
python-version: [3.5, 3.6, 3.7, 3.8]
1316
steps:
1417
- uses: actions/checkout@v2
15-
- name: Set up Python 3.8
18+
- name: Set up Python
1619
uses: actions/setup-python@v2
1720
with:
18-
python-version: 3.8
21+
python-version: ${{ matrix.python-version }}
1922
- name: Install dependencies
2023
run: |
2124
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)