docs: add install transparency for rt-7 (per-agent file locations) #74
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
| # CI workflow for Manifold | |
| # Satisfies: B2 (release velocity), RT-5 (CI integration) | |
| # | |
| # Security scanning runs as a separate workflow (security.yml) which | |
| # triggers on the same events. Use branch protection rules to require | |
| # security checks to pass before merging. | |
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| # Run Manifold verification | |
| manifold: | |
| name: Verify Manifolds | |
| uses: ./.github/workflows/manifold-verify.yml | |
| with: | |
| fail-on-gaps: false # Set to true to fail on non-blocking gaps | |
| # Run tests | |
| test: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Run tests | |
| run: bun test |