File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -48,34 +48,42 @@ jobs:
48
48
tox : py27
49
49
action : 2.7
50
50
docker : 2.7
51
+ implementation : cpython
51
52
- name : CPython 3.5
52
53
tox : py35
53
54
action : 3.5
54
55
docker : 3.5
56
+ implementation : cpython
55
57
- name : CPython 3.6
56
58
tox : py36
57
59
action : 3.6
58
60
docker : 3.6
61
+ implementation : cpython
59
62
- name : CPython 3.7
60
63
tox : py37
61
64
action : 3.7
62
65
docker : 3.7
66
+ implementation : cpython
63
67
- name : CPython 3.8
64
68
tox : py38
65
69
action : 3.8
66
70
docker : 3.8
71
+ implementation : cpython
67
72
- name : CPython 3.9
68
73
tox : py39
69
74
action : 3.9
70
75
docker : 3.9
76
+ implementation : cpython
71
77
- name : PyPy 2
72
78
tox : pypy2
73
79
action : pypy2
74
80
docker : pypy2
81
+ implementation : pypy
75
82
- name : PyPy 3
76
83
tox : pypy3
77
84
action : pypy3
78
85
docker : pypy3
86
+ implementation : pypy
79
87
reactor :
80
88
- name : default
81
89
tox : default
@@ -128,11 +136,17 @@ jobs:
128
136
run : |
129
137
echo "::add-matcher::.github/local-problem-matchers.json"
130
138
- name : Set up ${{ matrix.python.name }}
131
- if : ${{ job.container == '' }}
139
+ if : ${{ job.container == '' && matrix.python.implementation == 'cpython' }}
132
140
uses : actions/setup-python@v2
133
141
with :
134
142
python-version : ' ${{ matrix.python.action }}.0-alpha - ${{ matrix.python.action }}.X'
135
143
architecture : x64
144
+ - name : Set up ${{ matrix.python.name }}
145
+ if : ${{ job.container == '' && matrix.python.implementation == 'pypy'}}
146
+ uses : actions/setup-python@v2
147
+ with :
148
+ python-version : ' ${{ matrix.python.action }}'
149
+ architecture : x64
136
150
- name : Report Python information
137
151
shell : bash
138
152
run : |
You can’t perform that action at this time.
0 commit comments