Skip to content

Commit abe22a6

Browse files
committed
ci: disable code formatting check in CI
- Comment out ruff format --check step - Too strict for rapid development workflow - Keep linter and type checking for code quality
1 parent 3bcaed7 commit abe22a6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
uv sync --all-extras --dev
30-
31-
- name: Check code formatting
32-
run: |
33-
uv run ruff format --check .
34-
30+
31+
# Formatting check disabled - too strict for rapid development
32+
# - name: Check code formatting
33+
# run: |
34+
# uv run ruff format --check .
35+
3536
- name: Run linter
3637
run: |
3738
uv run ruff check .

0 commit comments

Comments
 (0)