Skip to content

[codex] Limit foreground API timeout #38

[codex] Limit foreground API timeout

[codex] Limit foreground API timeout #38

Workflow file for this run

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