This repository was archived by the owner on Jan 23, 2025. It is now read-only.
docs: add migration notice #39
Workflow file for this run
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: verify schema | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| build: | |
| name: verifying schema | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v3 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| cache-dependency-path: go.sum | |
| - run: go run ./cmd/schema verify | |