Skip to content

Commit af7c8fd

Browse files
MaxGhenisclaude
andcommitted
Fix CI lint: install ruff instead of black/isort in PR workflow
The Makefile's check-format target now uses `ruff format` but CI was still installing black, isort, and linecheck, causing "ruff: No such file or directory". Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2b6e22c commit af7c8fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/pr_code_changes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: astral-sh/setup-uv@v5
1717
- name: Install relevant dependencies
1818
run: |
19-
uv pip install black isort linecheck --system
19+
uv pip install "ruff>=0.9.0" --system
2020
- name: Check code formatting
2121
run: make check-format
2222

0 commit comments

Comments
 (0)