web/.gitea/workflows/check.yml
Edut LLC 41479d7fe6
Some checks are pending
check / secretapi (push) Waiting to run
ci: enforce identity hygiene gate
2026-02-20 15:48:22 -08:00

28 lines
740 B
YAML

name: check
on:
push:
branches: [main]
pull_request:
jobs:
secretapi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Identity hygiene gate
run: ./scripts/check_identity_hygiene.sh
- uses: actions/setup-go@v5
with:
go-version-file: backend/secretapi/go.mod
- name: Test secretapi
run: |
cd backend/secretapi
go test ./...
- name: Docs/runtime parity gates
run: |
cd backend/secretapi
go test ./... -run 'Test(OpenAPIPathParityWithRuntimeRoutes|SecretAPIEnvParityWithDocsAndTemplate)' -count=1
- name: Validate deployment artifacts
run: ./scripts/check_deployment_artifacts.sh