Skip to content

Commit 7fca8ca

Browse files
committed
fix: resolve MyPy module path conflict in publish workflow
- Change MyPy command to run from src directory - Fixes 'Source file found twice under different module names' error - Aligns publish workflow with main CI workflow approach - Ensures clean CI/CD pipeline for publishing
1 parent 9a5940f commit 7fca8ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
poetry run ruff check src/ tests/
5252
poetry run ruff format --check src/ tests/
53-
poetry run mypy src/
53+
cd src && poetry run mypy contextcraft
5454
5555
- name: 🛡️ Security scan
5656
run: poetry run bandit -r src/

0 commit comments

Comments
 (0)