Add testcheck to verify analyze cases against a real database, starting with ClickHouse #2340
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: buf | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: bufbuild/buf-setup-action@v1 | |
| with: | |
| # buf-setup-action resolves the release download URL through the | |
| # GitHub API. Without a token that request is anonymous and shares | |
| # a rate limit with every other job on the runner's IP, so setup | |
| # intermittently fails with "API rate limit exceeded". | |
| github_token: ${{ github.token }} | |
| - uses: bufbuild/buf-lint-action@v1 |