Changed "pip3 install" to "python -m pip install" in GitHub actions workflows.

This commit is contained in:
Mariusz Felisiak 2021-02-26 12:42:38 +01:00
parent 64a0d1ef6e
commit acddbc57d9
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ jobs:
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: 3.9 python-version: 3.9
- run: pip3 install flake8 - run: python -m pip install flake8
- name: flake8 - name: flake8
uses: liskin/gh-problem-matcher-wrap@v1 uses: liskin/gh-problem-matcher-wrap@v1
with: with:
@ -33,7 +33,7 @@ jobs:
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: 3.9 python-version: 3.9
- run: pip3 install isort - run: python -m pip install isort
- name: isort - name: isort
uses: liskin/gh-problem-matcher-wrap@v1 uses: liskin/gh-problem-matcher-wrap@v1
with: with: