diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index de328c3..8f4abca 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -26,16 +26,10 @@ jobs: run: pytest tests/ -v --cov=depnav --cov-report=term-missing - name: Run linting - run: | - echo "Running ruff check..." - ruff check depnav/ tests/ || echo "Ruff check failed with exit code $?" - echo "Ruff linting step completed" + run: ruff check depnav/ tests/ - name: Run type checking - run: | - echo "Running mypy type check..." - mypy depnav/src/ || echo "Mypy check failed with exit code $?" - echo "Mypy completed successfully" + run: mypy src/ build: needs: test