CI: auto-fix trailing newlines in ruff lint step

This commit is contained in:
2026-09-03 11:47:17 +03:00
parent 0920babb50
commit 0296ea501f
+3 -1
View File
@@ -29,7 +29,9 @@ jobs:
python -m pip install -e ".[dev]"
- name: Lint (ruff)
run: ruff check src tests
run: |
ruff check --fix src tests
ruff check src tests
- name: Typecheck (mypy)
run: mypy src