Sync monorepo state at "Bump google.golang.org/grpc from 1.69.4 to 1.70.0 in the golang group" #172
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 | |
| 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 |