1
0
Fork 0
mirror of https://github.com/actions/setup-python.git synced 2025-06-08 06:27:00 +09:00

change order

This commit is contained in:
Dmitry Shibanov 2023-07-13 11:58:02 +02:00
parent 5efa7eda94
commit 7e071b917f

View file

@ -55,9 +55,9 @@ jobs:
mv ./__tests__/data/Pipfile.lock .
mv ./__tests__/data/Pipfile .
if ("${{ matrix.python-version }}" -Match "pypy") {
pipenv install --keep-outdated --python pypy
pipenv install --python pypy --keep-outdated
} else {
pipenv install --keep-outdated --python ${{ matrix.python-version }}
pipenv install --python ${{ matrix.python-version }} --keep-outdated
}
python-poetry-dependencies-caching: