File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change 5050 python-version : ${{ matrix.python-version }}
5151 cache : ' pipenv'
5252 - name : Install dependencies
53- run : pipenv install flake8 --python ${{ matrix.python-version }}
54-
53+ shell : pwsh
54+ run : |
55+ if (${{ matrix.python-version }} -Match "pypy") {
56+ pipenv install flake8 --python pypy
57+ } else {
58+ pipenv install flake8 --python ${{ matrix.python-version }}
59+ }
5560 python-pip-dependencies-caching-path :
5661 name : Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }})
5762 runs-on : ${{ matrix.os }}
9095 cache : ' pipenv'
9196 cache-dependency-path : ' **/requirements-linux.txt'
9297 - name : Install dependencies
93- run : pipenv install flake8 --python ${{ matrix.python-version }}
98+ shell : pwsh
99+ run : |
100+ if (${{ matrix.python-version }} -Match "pypy") {
101+ pipenv install flake8 --python pypy
102+ } else {
103+ pipenv install flake8 --python ${{ matrix.python-version }}
104+ }
You can’t perform that action at this time.
0 commit comments