Add coverage for operations on primitive types and introduce JSON schemas #116
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: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.23' | |
| - name: Build | |
| run: make build | |
| - name: Run tests | |
| run: make test | |
| - name: Validate test suites | |
| run: make suite-validate | |
| - name: Check generated methods spec doc is up-to-date | |
| run: | | |
| make specgen | |
| if ! git diff --exit-code -- docs/methods-spec.md; then | |
| echo "Generated methods spec doc is out of date. Run 'make specgen' and commit the updated docs/methods-spec.md." | |
| exit 1 | |
| fi |