Skip to content

Commit

Permalink
fixed test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dorukgezici committed Oct 14, 2024
1 parent 962d332 commit 970eb2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/backend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
enable-cache: true

- name: Install the project
run: cd backend && uv sync --frozen
run: uv sync --frozen --directory backend

- name: Lint the project
run: source .venv/bin/activate && uv run task lint
run: source backend/.venv/bin/activate && uv run --directory backend task lint

- name: Run tests
run: source .venv/bin/activate && uv run task test
run: source backend/.venv/bin/activate && uv run --directory backend task test

0 comments on commit 970eb2b

Please sign in to comment.