diff options
| author | Anthony Sottile <asottile@umich.edu> | 2021-04-26 11:13:21 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-26 11:13:21 -0700 |
| commit | 9d64c1e3cc9acf65c0c63fd807722e9223547c31 (patch) | |
| tree | 88e4458b17af72ff7460e5c70ec39633368d9db7 | |
| parent | d1a4043c592c7a61bb65d76dfe98be4a356414ae (diff) | |
| download | flake8-9d64c1e3cc9acf65c0c63fd807722e9223547c31.tar.gz | |
Use python -mpip to install pip in github actions
This fixes installation on windows
| -rw-r--r-- | .github/workflows/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9743546..3e84b3c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 }} |
