Remove paid engagement service wording from OpenAPI description. #10
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| pages: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Regenerate API pages | |
| run: python3 scripts/generate-api-pages.py | |
| - name: Fail if generated pages drifted | |
| run: git diff --exit-code -- api-reference scripts/api-navigation.json docs.json | |
| - name: Check required files | |
| run: test -f docs.json && test -f openapi.json && test -f index.mdx |