Skip to content

Release: Google APIs 2026-03-13 #1

Release: Google APIs 2026-03-13

Release: Google APIs 2026-03-13 #1

Workflow file for this run

name: APX Schema CI
on:
pull_request:
branches: [main]
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install APX
uses: infobloxopen/apx@main
- name: Lint schemas
run: apx lint
- name: Check for breaking changes
run: apx breaking --against origin/main
- name: Check third-party protos are in sync
run: |
./scripts/sync-third-party.sh --check-only 2>&1 | tee /tmp/sync-check.txt
if grep -qE '^\s+[+~-] ' /tmp/sync-check.txt; then
echo "::error::Third-party protos are out of sync. Run ./scripts/sync-third-party.sh and commit the results."
exit 1
fi