Fix CI workflow - correct package name from gitignore_generator to depnav
Some checks failed
CI / test (push) Failing after 5s
CI / build (push) Has been skipped

This commit is contained in:
2026-01-30 16:54:43 +00:00
parent a4c476bce6
commit a127bb7444

View File

@@ -23,10 +23,13 @@ jobs:
pip install -e ".[dev]" pip install -e ".[dev]"
- name: Run tests - 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 - name: Run linting
run: ruff check src/depnav/ tests/ run: ruff check depnav/ tests/
- name: Run type checking
run: mypy depnav/
build: build:
needs: test needs: test