fix(models): add 6 required fields the spec returns #29
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 (dev) | |
| # Per-commit coverage on the long-lived dev branch, so a break is pinned to the | |
| # commit that caused it instead of surfacing across a whole delta at PR time. | |
| # Separate workflow (not the `check` context) so it never touches the dev->master | |
| # PR gate. Skips doc-only pushes. | |
| on: | |
| push: | |
| branches: [dev] | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**.md' | |
| concurrency: | |
| group: ci-dev-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: ./.github/actions/ci-dotnet |