Skip to content

Commit

Permalink
build: execute poetry commands in backend folder
Browse files Browse the repository at this point in the history
  • Loading branch information
francisvaut committed Apr 15, 2024
1 parent fdc2f2b commit 0d1367b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/backend-linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ jobs:
python-version: "3.11"
- name: Install dependencies
run: |
cd backend
python -m pip install --upgrade pip
pip install poetry
poetry install --directory=./backend
poetry install
- name: Execute linting checks
run: poetry run flake8 --config ./backend/.flake8 ./backend
run: cd backend; poetry run flake8 --config .flake8

0 comments on commit 0d1367b

Please sign in to comment.