Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
virtualenvs-in-project: true

- name: Install dependencies
run: poetry lock && poetry install
run: cd flo_ai && poetry lock && poetry install

- name: Run Ruff
run: poetry run pre-commit run --all-files
run: cd flo_ai && poetry run pre-commit run --all-files

- name: Run build
run: poetry build
run: cd flo_ai && poetry build

- name: Run tests
run: poetry run pytest
run: cd flo_ai && poetry run pytest

Loading