Skip to content

Commit 386b415

Browse files
committed
Fix ruff linting step to activate virtual environment before running checks
1 parent c9c7a6f commit 386b415

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ jobs:
3434
uv pip install -r requirements.txt
3535
uv pip install ruff
3636
- name: Lint with ruff
37-
run: ruff check .
37+
run: |
38+
source .venv/bin/activate
39+
ruff check .
3840
3941
test:
4042
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)