diff options
| author | Anthony Sottile <asottile@umich.edu> | 2021-04-26 11:15:52 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-26 11:15:52 -0700 |
| commit | bf6936b50389f04e5b8d8b9d2f1bbb8aef0fe8c7 (patch) | |
| tree | 88e4458b17af72ff7460e5c70ec39633368d9db7 | |
| parent | d1a4043c592c7a61bb65d76dfe98be4a356414ae (diff) | |
| parent | 9d64c1e3cc9acf65c0c63fd807722e9223547c31 (diff) | |
| download | flake8-bf6936b50389f04e5b8d8b9d2f1bbb8aef0fe8c7.tar.gz | |
Merge pull request #1323 from PyCQA/asottile-patch-1
Use python -mpip to install pip in github actions
| -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 }} |
