6
6
PEP8 :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v2
9
+ - uses : actions/checkout@v3.2.0
10
10
- name : Set up Python
11
- uses : actions/setup-python@v2
11
+ uses : actions/setup-python@v4.3.1
12
12
with :
13
13
python-version : ' 3.x'
14
14
- name : Install dependencies
22
22
PyLint :
23
23
runs-on : ubuntu-latest
24
24
steps :
25
- - uses : actions/checkout@v2
25
+ - uses : actions/checkout@v3.2.0
26
26
- name : Set up Python
27
- uses : actions/setup-python@v2
27
+ uses : actions/setup-python@v4.3.1
28
28
with :
29
29
python-version : ' 3.7'
30
30
- name : Install dependencies
42
42
MyPy :
43
43
runs-on : ubuntu-latest
44
44
steps :
45
- - uses : actions/checkout@v2
45
+ - uses : actions/checkout@v3.2.0
46
46
- name : Set up Python
47
- uses : actions/setup-python@v2
47
+ uses : actions/setup-python@v4.3.1
48
48
with :
49
49
python-version : ' 3.x'
50
50
- name : Install dependencies
62
62
Black :
63
63
runs-on : ubuntu-latest
64
64
steps :
65
- - uses : actions/checkout@v2
65
+ - uses : actions/checkout@v3.2.0
66
66
- name : Set up Python
67
- uses : actions/setup-python@v2
67
+ uses : actions/setup-python@v4.3.1
68
68
with :
69
69
python-version : ' 3.x'
70
70
- name : Install dependencies
85
85
python-version : ["3.7", "3.8", "3.9", "3.10"]
86
86
87
87
steps :
88
- - uses : actions/checkout@v2
88
+ - uses : actions/checkout@v3.2.0
89
89
- name : Set up Python ${{ matrix.python-version }}
90
- uses : actions/setup-python@v2
90
+ uses : actions/setup-python@v4.3.1
91
91
with :
92
92
python-version : ${{ matrix.python-version }}
93
93
- name : Install dependencies
@@ -109,9 +109,9 @@ jobs:
109
109
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
110
110
runs-on : ubuntu-latest
111
111
steps :
112
- - uses : actions/checkout@v2
112
+ - uses : actions/checkout@v3.2.0
113
113
- name : Set up Python
114
- uses : actions/setup-python@v2
114
+ uses : actions/setup-python@v4.3.1
115
115
with :
116
116
python-version : ' 3.x'
117
117
- name : Install dependencies
0 commit comments