fix(docs): read spec examples as text so a type mismatch cannot fail … #24
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] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| - name: Install Kiota | |
| run: | | |
| dotnet tool install --global Microsoft.OpenApi.Kiota --version 1.32.2 | |
| echo "$HOME/.dotnet/tools" >> "$GITHUB_PATH" | |
| # Hermetic: regenerates from the committed spec, so this verifies that the committed | |
| # generated code still reproduces from it, with no network dependency. Refreshing the | |
| # spec itself is the release workflow's job. | |
| - name: Codegen drift check | |
| env: | |
| ROXYAPI_SPEC_FILE: specs/openapi.json | |
| run: | | |
| dotnet run --project tools/RoxyDevTools -- generate | |
| git diff --exit-code -- specs/openapi.json src/Generated \ | |
| || { echo 'codegen drift: run "dotnet run --project tools/RoxyDevTools -- generate" and commit the result'; exit 1; } | |
| - name: Docs drift check | |
| run: | | |
| dotnet run --project tools/RoxyDevTools -- sync-docs | |
| git diff --exit-code -- README.md AGENTS.md docs/llms-full.txt tests/RoxyApi.Tests/Generated \ | |
| || { echo 'docs drift: run "dotnet run --project tools/RoxyDevTools -- sync-docs" and commit the result'; exit 1; } | |
| - name: Format check | |
| run: dotnet format --verify-no-changes --exclude src/Generated/ | |
| - name: Build | |
| run: dotnet build -c Release | |
| - name: Test | |
| run: dotnet test -c Release --no-build | |
| env: | |
| ROXY_API_KEY: ${{ secrets.ROXY_API_KEY }} |