Bump google.golang.org/grpc from 1.76.0 to 1.79.3 #87
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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install bazelisk | |
| run: | | |
| curl -LO https://github.com/bazelbuild/bazelisk/releases/download/v1.7.4/bazelisk-linux-amd64 | |
| mkdir -p "${HOME}/bin" | |
| mv bazelisk-linux-amd64 "${HOME}/bin/bazel" | |
| chmod +x "${HOME}/bin/bazel" | |
| - name: Check generated code is up to date | |
| run: | | |
| set -e | |
| PATH=${HOME}/bin:$PATH ./hooks/pre-commit | |
| if ! git diff --quiet HEAD; then | |
| echo "Generated code is out of date. Please run ./hooks/pre-commit and commit the result." | |
| git diff --stat HEAD | |
| exit 1 | |
| fi |