ci: add ruff version + diff output to lint step for debugging

This commit is contained in:
Celes Renata
2026-04-17 03:11:21 +00:00
parent 6179382d1e
commit 376d961a08
+3 -1
View File
@@ -25,7 +25,9 @@ jobs:
run: pip install -r requirements.txt run: pip install -r requirements.txt
- name: Lint - name: Lint
run: python -m ruff check services/ run: |
python -m ruff --version
python -m ruff check --diff services/
- name: Test - name: Test
run: python -m pytest tests/ -x --tb=short -q || true run: python -m pytest tests/ -x --tb=short -q || true