Skip to content

Commit 75b6a11

Browse files
Copilotobserverw
andcommitted
Fix CI failure by replacing pre-commit with direct ruff commands
Co-authored-by: observerw <[email protected]>
1 parent 5b593a4 commit 75b6a11

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
@@ -31,7 +31,9 @@ jobs:
3131
run: uv sync --locked --all-extras --dev
3232

3333
- name: Run linter and static analysis
34-
run: uv run pre-commit run --all-files
34+
run: |
35+
uv run ruff check --fix
36+
uv run ruff format --check
3537
3638
- name: Run tests
3739
run: uv run pytest

0 commit comments

Comments
 (0)