chore: allow bonded votes to support velocker [skip-line-limit] #300
Workflow file for this run
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: Agent Harness | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| name: Check agent rules and invariants | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check shell syntax | |
| run: bash -n scripts/agent-format-hook.sh scripts/check-committee.sh scripts/check-doc-sync.sh scripts/check-invariants.sh | |
| - name: Check harness documentation sync | |
| env: | |
| DOC_SYNC_BASE_REF: ${{ github.event.pull_request.base.sha }} | |
| run: ./scripts/check-doc-sync.sh | |
| - name: Check mechanical invariants | |
| run: ./scripts/check-invariants.sh | |
| - name: Check committee configuration | |
| run: ./scripts/check-committee.sh |