Skip to content

Commit 2440e78

Browse files
committed
more catchup
1 parent c7c5a26 commit 2440e78

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,18 @@ jobs:
134134
- uses: actions/checkout@v2
135135
with:
136136
fetch-depth: 0
137-
- name: Set up ${{ matrix.python.name }}
138-
if: ${{ job.container == ''}}
137+
- name: Set up ${{ matrix.python.name }} (if CPython)
138+
if: ${{ job.container == '' && matrix.python.implementation == 'cpython'}}
139139
uses: actions/setup-python@v2
140140
with:
141141
python-version: '${{ matrix.python.action }}.0-alpha - ${{ matrix.python.action }}.X'
142142
architecture: '${{ matrix.arch.action }}'
143+
- name: Set up ${{ matrix.python.name }} (if PyPy)
144+
if: ${{ job.container == '' && matrix.python.implementation == 'pypy'}}
145+
uses: actions/setup-python@v2
146+
with:
147+
python-version: '${{ matrix.python.action }}'
148+
architecture: '${{ matrix.arch.action }}'
143149
- name: Install
144150
run: |
145151
pip install --upgrade pip setuptools wheel

0 commit comments

Comments
 (0)