feat: enforce signed target maturity evidence
Dependency Audit / dependency-audit (push) Failing after 9s
Deployment Installer / deployment-installer (push) Successful in 6s
Security Audit / security-audit (push) Failing after 8s

This commit is contained in:
2026-08-02 03:41:09 +02:00
parent be8ba10ae3
commit 2c56a0fc11
12 changed files with 1245 additions and 15 deletions
@@ -1,10 +1,15 @@
"""Repeatable GovOPlaN product-assessment tooling."""
from .capability_fit import review_capability_fit, render_review
from .capability_fit import (
enforce_required_boundary_scopes,
render_review,
review_capability_fit,
)
from .evidence import collect_installed_composition
__all__ = (
"collect_installed_composition",
"enforce_required_boundary_scopes",
"render_review",
"review_capability_fit",
)