Bump google.golang.org/grpc from 1.61.1 to 1.62.0 #348
Workflow file for this run
This file contains 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: Go-Build | |
on: [ push ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Install buildDeps and generate sources | |
run: | | |
export PATH=$HOME/go/bin:$PATH | |
make buildDeps generate | |
- name: Run Tests | |
run: | | |
export PATH=$HOME/go/bin:$PATH:$GOPATH/bin | |
timeout 10m make test |