Use python -mpip to install pip in github actions

This fixes installation on windows
This commit is contained in:
Anthony Sottile 2021-04-26 11:13:21 -07:00 committed by GitHub
parent d1a4043c59
commit 9d64c1e3cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,5 +47,5 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install --upgrade setuptools pip tox virtualenv
- run: python -mpip install --upgrade setuptools pip tox virtualenv
- run: tox -e ${{ matrix.toxenv }}