docs(agent/mcp): cut confirmation friction in perf-engineer runs #35
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: Structural tests | |
| on: | |
| push: # run on every branch push... | |
| paths-ignore: # ...except a bare VERSION bump — the Sync version workflow | |
| - "VERSION" # propagates it, and its follow-up commit runs these tests green | |
| pull_request: # and on PRs (covers forks) | |
| workflow_dispatch: # and on-demand from the Actions tab | |
| jobs: | |
| structural: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install test dependencies | |
| run: make install | |
| - name: Run structural tests | |
| run: make test |