ci: add debugging output to CI steps
Some checks failed
CI / test (push) Failing after 6s
CI / build (push) Has been skipped

This commit is contained in:
2026-01-30 17:27:37 +00:00
parent c8e2208b86
commit a1516d5832

View File

@@ -27,14 +27,14 @@ jobs:
- name: Run linting
run: |
set -e
ruff check depnav/ tests/
echo "Ruff linting completed successfully"
echo "Running ruff check..."
ruff check depnav/ tests/ || echo "Ruff check failed with exit code $?"
echo "Ruff linting step completed"
- name: Run type checking
run: |
set -e
mypy depnav/src/
echo "Running mypy type check..."
mypy depnav/src/ || echo "Mypy check failed with exit code $?"
echo "Mypy completed successfully"
build: