Files
CLIProxyAPI/.github/workflows/pr-test-build.yml
sususu98 4fe2c60c51 feat(registry): remote-refresh Codex client model catalog (#4276)
Load codex_client_models.json like models.json with validation, revisioned
handler reloads, CI bake, and Home-aware updater gates so list IDs still
come from Home while templates can refresh on the edge.
2026-07-13 17:47:35 +08:00

26 lines
518 B
YAML

name: pr-test-build
on:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Refresh models catalog
run: bash .github/scripts/refresh-model-catalogs.sh
- name: Build
run: |
go build -o test-output ./cmd/server
rm -f test-output