Skip to content

Commit d4c567d

Browse files
authored
Merge pull request #5 from ScrapingAnt/feature/issue2-matrix-builds
feature/issue2-matrix-builds: added matrix builds
2 parents acb5d7a + 2ca16d8 commit d4c567d

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/code_checks.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,19 @@ on: push
44

55
jobs:
66
code_checks:
7-
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
pyver: [ 3.6, 3.7, 3.8, 3.9 ]
10+
no-extensions: [ '', 'Y' ]
11+
os: [ ubuntu, macos, windows ]
12+
fail-fast: true
13+
runs-on: ${{ matrix.os }}-latest
14+
timeout-minutes: 5
815
steps:
9-
- name: Set up Python
16+
- name: Set up Python ${{ matrix.pyver }}
1017
uses: actions/setup-python@v1
1118
with:
12-
python-version: 3.7
19+
python-version: ${{ matrix.pyver }}
1320
- name: Checkout
1421
uses: actions/checkout@v2
1522
- name: Init

0 commit comments

Comments
 (0)