Release: Google APIs 2026-03-13 #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |