File tree 1 file changed +14
-3
lines changed
1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change 50
50
python-version : ${{ matrix.python-version }}
51
51
cache : ' pipenv'
52
52
- 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
+ }
55
60
python-pip-dependencies-caching-path :
56
61
name : Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }})
57
62
runs-on : ${{ matrix.os }}
90
95
cache : ' pipenv'
91
96
cache-dependency-path : ' **/requirements-linux.txt'
92
97
- 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