Skip to content

Commit 2de44bd

Browse files
committed
fix: update CI workflow to use 'uv run' for task execution
1 parent 57f2801 commit 2de44bd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
uv pip install --system ".[dev]"
3333
3434
- name: Format check
35-
run: task format-check
35+
run: uv run task format-check
3636

3737
- name: Lint
38-
run: task lint
38+
run: uv run task lint
3939

4040
- name: Type check
41-
run: task typecheck
41+
run: uv run task typecheck
4242

4343
- name: Test
44-
run: task test
44+
run: uv run task test

0 commit comments

Comments
 (0)