ci: add error handling to CI steps for better debugging
Some checks failed
CI / test (push) Failing after 5s
CI / build (push) Has been skipped

This commit is contained in:
2026-01-30 17:26:57 +00:00
parent d1d40578c9
commit c8e2208b86

View File

@@ -26,10 +26,16 @@ jobs:
run: pytest tests/ -v --cov=depnav --cov-report=term-missing run: pytest tests/ -v --cov=depnav --cov-report=term-missing
- name: Run linting - name: Run linting
run: ruff check depnav/ tests/ run: |
set -e
ruff check depnav/ tests/
echo "Ruff linting completed successfully"
- name: Run type checking - name: Run type checking
run: mypy depnav/src/ run: |
set -e
mypy depnav/src/
echo "Mypy completed successfully"
build: build:
needs: test needs: test