mirror of https://github.com/actions/setup-python
fix check
This commit is contained in:
parent
1e52de40a4
commit
d358f9e3d7
|
@ -54,7 +54,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
mv ./__tests__/data/Pipfile.lock .
|
mv ./__tests__/data/Pipfile.lock .
|
||||||
mv ./__tests__/data/Pipfile .
|
mv ./__tests__/data/Pipfile .
|
||||||
if (${{ matrix.python-version }} -Match "pypy") {
|
if ("${{ matrix.python-version }}" -Match "pypy") {
|
||||||
pipenv install --keep-outdated --python ${{ matrix.python-version }}
|
pipenv install --keep-outdated --python ${{ matrix.python-version }}
|
||||||
} else {
|
} else {
|
||||||
pipenv install --keep-outdated --python pypy
|
pipenv install --keep-outdated --python pypy
|
||||||
|
@ -124,7 +124,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
mv ./__tests__/data/Pipfile.lock .
|
mv ./__tests__/data/Pipfile.lock .
|
||||||
mv ./__tests__/data/Pipfile .
|
mv ./__tests__/data/Pipfile .
|
||||||
if (${{ matrix.python-version }} -Match "pypy") {
|
if ("${{ matrix.python-version }}" -Match "pypy") {
|
||||||
pipenv install --keep-outdated --python ${{ matrix.python-version }}
|
pipenv install --keep-outdated --python ${{ matrix.python-version }}
|
||||||
} else {
|
} else {
|
||||||
pipenv install --keep-outdated --python pypy
|
pipenv install --keep-outdated --python pypy
|
||||||
|
|
Loading…
Reference in New Issue