Skip to content

Commit 84cff34

Browse files
authored
Merge pull request #18 from leogregianin/master
Github actions run in all python versions
2 parents 5461397 + 2ea8aaf commit 84cff34

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,17 @@ on:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1619

1720
steps:
1821
- uses: actions/checkout@v2
19-
- name: Set up Python 3.7
20-
uses: actions/setup-python@v1
22+
- name: Set up Python ${{ matrix.python-version }}
23+
uses: actions/setup-python@v2
24+
with:
25+
python-version: ${{ matrix.python-version }}
2126
- name: Install Dependencies
2227
run: pip install -r requirements.txt
2328
- name: Run Tests

0 commit comments

Comments
 (0)