change pip to pip3 in install depenencies section of pythonapp workflow

This commit is contained in:
Xevion
2020-02-07 01:38:53 -06:00
parent 5c238ac178
commit 253abe6fc7

View File

@@ -16,7 +16,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip3 install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8