Skip to content

Commit c75d253

Browse files
committed
use pipenv
1 parent 705b6f5 commit c75d253

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install flake8 pytest
25-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
24+
pip install flake8 pytest pipenv
25+
pipenv run pip freeze > requirements.txt
26+
pip install -r requirements.txt
2627
2728
- name: Lint with flake8
2829
run: |

0 commit comments

Comments
 (0)