ci: add debugging output to CI steps
This commit is contained in:
@@ -27,14 +27,14 @@ jobs:
|
|||||||
|
|
||||||
- name: Run linting
|
- name: Run linting
|
||||||
run: |
|
run: |
|
||||||
set -e
|
echo "Running ruff check..."
|
||||||
ruff check depnav/ tests/
|
ruff check depnav/ tests/ || echo "Ruff check failed with exit code $?"
|
||||||
echo "Ruff linting completed successfully"
|
echo "Ruff linting step completed"
|
||||||
|
|
||||||
- name: Run type checking
|
- name: Run type checking
|
||||||
run: |
|
run: |
|
||||||
set -e
|
echo "Running mypy type check..."
|
||||||
mypy depnav/src/
|
mypy depnav/src/ || echo "Mypy check failed with exit code $?"
|
||||||
echo "Mypy completed successfully"
|
echo "Mypy completed successfully"
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
|||||||
Reference in New Issue
Block a user