Use consistent calls to pip

`pip` was called in two different ways which is a bit inconsistent, this change just makes it so that it is called in the same way both times.
This commit is contained in:
Robert Rosca
2020-11-23 11:13:06 +01:00
committed by GitHub
parent 2d3a2e57d3
commit 0e2cd77dc8
+1 -1
View File
@@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |