From a127bb74440fc950d1017d050279642a3d77744e Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 16:54:43 +0000 Subject: [PATCH] Fix CI workflow - correct package name from gitignore_generator to depnav --- .gitea/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4ef1785..5d42823 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,10 +23,13 @@ jobs: pip install -e ".[dev]" - name: Run tests - run: pytest tests/ -v --cov=src/depnav --cov-report=term-missing + run: pytest tests/ -v --cov=depnav --cov-report=term-missing - name: Run linting - run: ruff check src/depnav/ tests/ + run: ruff check depnav/ tests/ + + - name: Run type checking + run: mypy depnav/ build: needs: test