Skip to content

Commit 5fa056c

Browse files
committed
[bugfix] installing dependencies
1 parent 51ae689 commit 5fa056c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
pip install flake8 pytest pytest-asyncio
30-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29+
pip install poetry
30+
poetry lock
31+
poetry install
3132
- name: Lint with flake8
3233
run: |
3334
# stop the build if there are Python syntax errors or undefined names

0 commit comments

Comments
 (0)