Skip to content

Commit eee7ba6

Browse files
authored
Merge pull request #4 from observerw/copilot/fix-ci-failure
Fix CI failure: replace pre-commit with direct ruff commands
2 parents ba1d8b7 + d777eb1 commit eee7ba6

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
36+
uv run ruff format --check
3537
3638
- name: Run tests
3739
run: uv run pytest

0 commit comments

Comments
 (0)