Add a simple ddl for the key/val store so we can more easily query the store #52
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: api - CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - api/** | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| lint-breaking: | |
| name: Lint and Breaking Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bufbuild/buf-setup-action@v1 | |
| with: | |
| version: "1.33.0" | |
| - uses: bufbuild/buf-lint-action@v1 | |
| with: | |
| input: api | |
| - uses: bufbuild/buf-breaking-action@v1 | |
| with: | |
| input: api | |
| against: "https://github.com/${GITHUB_REPOSITORY}.git#branch=main,subdir=api" |