File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -5,20 +5,21 @@ on: [push, pull_request]
5
5
jobs :
6
6
code-style :
7
7
8
- # runs-on: ${{ matrix.os }}
9
- # strategy:
10
- # fail-fast: false
11
- # matrix:
12
- # os: [ubuntu-latest, windows-latest, macOS-latest]
13
- # python-version: [3.6, 3.7]
8
+ runs-on : ${{ matrix.os }}
9
+ strategy :
10
+ matrix :
11
+ os : [ubuntu-latest, windows-latest, macOS-latest]
12
+ python-version : [3.7, 3.8, 3.9, 3.10]
13
+
14
+ name : Python ${{ matrix.python-version }} Test
14
15
15
- runs-on : ubuntu-latest
16
16
steps :
17
- - uses : actions/checkout@v2
18
- - name : Set up Python 3.9
19
- uses : actions/setup-python@v2
17
+ - uses : actions/checkout@v3
18
+ - name : Set up Python
19
+ uses : actions/setup-python@v3
20
20
with :
21
- python-version : 3.9
21
+ python-version : ${{ matrix.python-version }}
22
+ architecture : x64
22
23
- name : Install dependencies
23
24
run : |
24
25
python -m pip install --upgrade pip pipenv
You can’t perform that action at this time.
0 commit comments