File tree Expand file tree Collapse file tree 2 files changed +16
-12
lines changed
Expand file tree Collapse file tree 2 files changed +16
-12
lines changed Original file line number Diff line number Diff line change 1515jobs :
1616
1717 build :
18- runs-on : ubuntu-latest
18+ runs-on : ubuntu-20.04
19+ strategy :
20+ matrix :
21+ python-version : ["3.6"]
1922 steps :
20- - uses : actions/checkout@v2
21-
22- - name : Set up Python 3.x
23- uses : actions/setup-python@v2
23+ - uses : actions/checkout@v3
24+ - name : Set up Python ${{ matrix.python-version }}
25+ uses : actions/setup-python@v4
2426 with :
25- python-version : ' 3.x '
27+ python-version : ${{ matrix.python-version }}
2628
2729 - name : Install dependencies
2830 run : |
Original file line number Diff line number Diff line change @@ -3,14 +3,16 @@ on: [push, pull_request]
33jobs :
44
55 build :
6- runs-on : ubuntu-latest
6+ runs-on : ubuntu-20.04
7+ strategy :
8+ matrix :
9+ python-version : ["3.6"]
710 steps :
8- - uses : actions/checkout@v2
9-
10- - name : Set up Python 3.6
11- uses : actions/setup-python@v2
11+ - uses : actions/checkout@v3
12+ - name : Set up Python ${{ matrix.python-version }}
13+ uses : actions/setup-python@v4
1214 with :
13- python-version : ' 3.6 '
15+ python-version : ${{ matrix.python-version }}
1416
1517 - name : Install dependencies
1618 run : |
You can’t perform that action at this time.
0 commit comments