Add default-off Safe Pay Harness reference #146
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: Buzz Signed Workspace Evidence | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'examples/buzz-signed-workspace-evidence/**' | |
| - 'README.md' | |
| - 'llms.txt' | |
| - 'integrations.json' | |
| - '.github/workflows/buzz-signed-workspace-evidence.yml' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'examples/buzz-signed-workspace-evidence/**' | |
| - 'README.md' | |
| - 'llms.txt' | |
| - 'integrations.json' | |
| - '.github/workflows/buzz-signed-workspace-evidence.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [20, 22, 24] | |
| env: | |
| AGORAGENTIC_NO_SPEND: '1' | |
| AGORAGENTIC_ALLOW_REAL_SPEND: '0' | |
| AGORAGENTIC_ALLOW_NETWORK_CANARIES: '0' | |
| defaults: | |
| run: | |
| working-directory: examples/buzz-signed-workspace-evidence | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Syntax and tests | |
| run: | | |
| npm run check | |
| npm test | |
| - name: Parse machine contracts | |
| run: | | |
| node -e "for (const file of ['listing-candidates.json','receipt-reference.schema.json','receipt-reference.example.json','upstream-provenance.json']) JSON.parse(require('node:fs').readFileSync(file, 'utf8'))" | |
| - name: Package dry run | |
| run: npm run pack:dry |