Skip to content

Commit

Permalink
Update build-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
marlenezw authored Jul 22, 2024
1 parent 544fde8 commit 6c64324
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,16 @@ jobs:
cd ./backend
python3 -m venv venv
source venv/bin/activate
poetry install
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint with ruff
run: ruff check .
run: |
cd ./backend
ruff check .
- name: Check formatting with black
run: black . --check --verbose
run: |
cd ./backend
black . --check --verbose
build_test_all:
if: always()
Expand Down

0 comments on commit 6c64324

Please sign in to comment.