eval(deltawire): integrate terminal v6 runtime boundary #20
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: Verify DeltaWire lab | |
| on: | |
| pull_request: | |
| paths: ["labs/20-deltawire/**", "go.work", ".github/workflows/deltawire-lab.yml"] | |
| push: | |
| branches: [main] | |
| paths: ["labs/20-deltawire/**", "go.work", ".github/workflows/deltawire-lab.yml"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| # Evidence locks intentionally verify historical experiment commits | |
| # that are preserved on non-main branches. | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version-file: labs/20-deltawire/go.mod | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - run: bash labs/20-deltawire/scripts/validate.sh |