Sync monorepo state at "Use postgres instead of cockroach for dev" #191
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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v4 | |
| - name: Setup Go environment | |
| uses: ./.github/actions/go-setup | |
| - name: Install Terraform | |
| uses: hashicorp/setup-terraform@v3 | |
| - name: Codegen | |
| run: | | |
| make codegen | |
| RES=$(git status --porcelain) | |
| if [ -n "$RES" ]; then | |
| echo "ERROR: running codegen changed something" | |
| echo "$RES" | |
| exit 1 | |
| fi | |
| - name: Build | |
| run: | | |
| make build |