Some checks failed
audit / audit (push) Successful in 8s
ci-cd / build (push) Failing after 5s
autofix / fix (push) Successful in 15s
security-scanning / audit (push) Successful in 1m57s
test / test (push) Successful in 3s
ci-cd / deploy (push) Has been skipped
ci / build (push) Failing after 4s
BREAKTHROUGH: Poetry working but project packaging configuration incomplete Issue: 'No file/folder found for package aitbc-cli' Root cause: Project has packaging configuration but missing package structure Solution: Use --no-root flag to install dependencies only Changes: - Add --no-root flag to poetry install commands - Skip current project installation, only install dependencies - Maintain all other functionality (security scanning, etc.) - This avoids packaging configuration issues while enabling dependency management Updated workflows: - audit.yml: poetry install --no-root + audit - fix.yml: poetry install --no-root + safety fixes - security-scanning.yml: poetry install --no-root + security scans Expected results: - Dependencies installed successfully without packaging errors - Security tools working in project venv - All workflows completing successfully - Complete CI/CD pipeline functional This resolves the packaging configuration issue while maintaining full dependency management and security scanning capabilities.