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]
55jobs :
66 code-style :
77
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
1415
15- runs-on : ubuntu-latest
1616 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
2020 with :
21- python-version : 3.9
21+ python-version : ${{ matrix.python-version }}
22+ architecture : x64
2223 - name : Install dependencies
2324 run : |
2425 python -m pip install --upgrade pip pipenv
You can’t perform that action at this time.
0 commit comments