Add Phase 0 build verification gate (T-004)
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
name: Phase 0 build gate
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
permissions: read-all
|
||||
|
||||
jobs:
|
||||
verify:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Set up Go 1.25
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: "1.25.0"
|
||||
cache: false
|
||||
- name: Run Phase 0 verification
|
||||
run: bash scripts/verify_phase0.sh
|
||||
Reference in New Issue
Block a user