From c8e2208b8636ccee66d8b3d8408f4247354ff6b6 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 17:26:57 +0000 Subject: [PATCH] ci: add error handling to CI steps for better debugging --- .gitea/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0b7b3f0..5d5949a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -26,10 +26,16 @@ jobs: run: pytest tests/ -v --cov=depnav --cov-report=term-missing - name: Run linting - run: ruff check depnav/ tests/ + run: | + set -e + ruff check depnav/ tests/ + echo "Ruff linting completed successfully" - name: Run type checking - run: mypy depnav/src/ + run: | + set -e + mypy depnav/src/ + echo "Mypy completed successfully" build: needs: test