File tree Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
test :
10
10
runs-on : ubuntu-latest
11
+ strategy :
12
+ matrix :
13
+ python-version : [ '3.8', '3.9', '3.10']
11
14
timeout-minutes : 10
12
15
13
16
services :
@@ -32,13 +35,13 @@ jobs:
32
35
33
36
steps :
34
37
- name : Check out repository code
35
- uses : actions/checkout@v2
38
+ uses : actions/checkout@v3
36
39
37
40
# Setup Python (faster than using Python container)
38
41
- name : Setup Python
39
- uses : actions/setup-python@v2
42
+ uses : actions/setup-python@v3
40
43
with :
41
- python-version : " 3.8 "
44
+ python-version : ${{ matrix.python-version }
42
45
43
46
- name : Lint code
44
47
uses :
pre-commit/[email protected]
@@ -109,6 +112,6 @@ jobs:
109
112
test-docs :
110
113
runs-on : ubuntu-latest
111
114
steps :
112
- - uses : actions/checkout@v2
115
+ - uses : actions/checkout@v3
113
116
- name : Test generating docs
114
117
run : make docs
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ jobs:
18
18
19
19
steps :
20
20
- name : Checkout master
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v3
22
22
23
23
- name : Set up Python 3.8
24
- uses : actions/setup-python@v2
24
+ uses : actions/setup-python@v3
25
25
with :
26
26
python-version : 3.8
27
27
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
10
10
name : release
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v3
14
14
15
15
- name : Set up Python 3.x
16
- uses : actions/setup-python@v2
16
+ uses : actions/setup-python@v3
17
17
with :
18
18
python-version : " 3.x"
19
19
You can’t perform that action at this time.
0 commit comments