Skip to content

Commit 38e8a7f

Browse files
konardclaude
andcommitted
Fix Python CI workflow to only check src and tests
Limit ruff check and format to src/ and tests/ directories, excluding experiments/ which contains temporary files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 7f6aba3 commit 38e8a7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ jobs:
5555
5656
- name: Run Ruff linting
5757
working-directory: ./python
58-
run: ruff check .
58+
run: ruff check src tests
5959

6060
- name: Check Ruff formatting
6161
working-directory: ./python
62-
run: ruff format --check .
62+
run: ruff format --check src tests
6363

6464
- name: Run mypy
6565
working-directory: ./python

0 commit comments

Comments
 (0)