Add contract tests for State Integrity reports and repair plans #45
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Trust Surface | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| validate-trust-surface: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Require trust surface baseline | |
| run: | | |
| test -f TRUST_SURFACE.yaml | |
| test -f SECURITY.md | |
| test -f scripts/doctor | |
| test -f scripts/network-surface | |
| test -f scripts/policy-surface | |
| test -f scripts/purge | |
| test -f scripts/prove-clean |