We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents acb5d7a + 2ca16d8 commit d4c567dCopy full SHA for d4c567d
.github/workflows/code_checks.yaml
@@ -4,12 +4,19 @@ on: push
4
5
jobs:
6
code_checks:
7
- runs-on: ubuntu-latest
+ 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
15
steps:
- - name: Set up Python
16
+ - name: Set up Python ${{ matrix.pyver }}
17
uses: actions/setup-python@v1
18
with:
- python-version: 3.7
19
+ python-version: ${{ matrix.pyver }}
20
- name: Checkout
21
uses: actions/checkout@v2
22
- name: Init
0 commit comments