[codex] Limit foreground API timeout #38
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: Build | |
| # PR check only: confirms the Go source compiles for every target platform. | |
| # Binaries are NOT committed here — they are rebuilt and committed by the | |
| # Release workflow (release.yml) so bin/ and the version always move together. | |
| on: | |
| pull_request: | |
| paths: | |
| - 'src/**' | |
| - 'go.mod' | |
| - 'Makefile' | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.21.13' | |
| - name: Vet | |
| run: go vet ./src | |
| - name: Build binaries (compile check) | |
| run: make build |