File tree 3 files changed +13
-13
lines changed
3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ jobs:
17
17
env :
18
18
FORCE_COLOR : true
19
19
steps :
20
- - uses : actions/checkout@v2
20
+ - uses : actions/checkout@v3
21
21
22
22
- name : Setup Python
23
- uses : actions/setup-python@v2
23
+ uses : actions/setup-python@v4
24
24
with :
25
25
python-version : 3.7
26
26
27
- - name : Install nox
28
- run : python -m pip install nox
27
+ - name : Install mypy
28
+ run : python -m pip --disable-pip-version-check install mypy==0.981
29
29
30
- - name : Run check for type
31
- run : nox -s mypy
30
+ - name : Run mypy
31
+ run : mypy -p mesonpy
Original file line number Diff line number Diff line change 63
63
runs-on : ubuntu-latest
64
64
steps :
65
65
- name : Check out ${{ env.SPKG }}
66
- uses : actions/checkout@v2
66
+ uses : actions/checkout@v3
67
67
with :
68
68
path : build/pkgs/${{ env.SPKG }}/src
69
69
- name : Install prerequisites
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ concurrency:
13
13
cancel-in-progress : true
14
14
15
15
jobs :
16
- pytest :
16
+ test :
17
17
runs-on : ${{ matrix.os }}-latest
18
18
env :
19
19
FORCE_COLOR : true
@@ -35,10 +35,10 @@ jobs:
35
35
36
36
steps :
37
37
- name : Checkout
38
- uses : actions/checkout@v2
38
+ uses : actions/checkout@v3
39
39
40
40
- name : Set up target Python
41
- uses : actions/setup-python@v2
41
+ uses : actions/setup-python@v4
42
42
with :
43
43
python-version : ${{ matrix.python }}
44
44
73
73
74
74
steps :
75
75
- name : Checkout
76
- uses : actions/checkout@v2
76
+ uses : actions/checkout@v3
77
77
78
78
- name : Setup Cygwin
79
79
uses : cygwin/cygwin-install-action@v2
@@ -156,7 +156,7 @@ jobs:
156
156
157
157
steps :
158
158
- name : Checkout
159
- uses : actions/checkout@v2
159
+ uses : actions/checkout@v3
160
160
161
161
- name : Install pyston
162
162
run : |
@@ -198,7 +198,7 @@ jobs:
198
198
199
199
steps :
200
200
- name : Checkout
201
- uses : actions/checkout@v2
201
+ uses : actions/checkout@v3
202
202
203
203
- name : Install Homebrew Python
204
204
run : |
You can’t perform that action at this time.
0 commit comments