Changed "pip3 install" to "python -m pip install" in GitHub actions workflows.
This commit is contained in:
parent
64a0d1ef6e
commit
acddbc57d9
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue