We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3ce166 commit e35a711Copy full SHA for e35a711
.github/workflows/golang.yaml
@@ -29,7 +29,14 @@ jobs:
29
- uses: ./.github/actions/install-protoc
30
- name: Install Go dependencies
31
run: |
32
- go mod tidy
+ go install google.golang.org/protobuf/cmd/protoc-gen-go@v${GO_PROTOC_PLUGIN_VERSION}
33
+ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v${GO_PROTOC_GRPC_PLUGIN_VERSION}
34
+ go install github.com/googleapis/gapic-generator-go/cmd/protoc-gen-go_gapic@v${GO_GAPIC_VERSION}
35
+ go install golang.org/x/tools/cmd/goimports@latest
36
+ env:
37
+ GO_PROTOC_PLUGIN_VERSION: 1.35.2
38
+ GO_PROTOC_GRPC_PLUGIN_VERSION: 1.3.0
39
+ GO_GAPIC_VERSION: 0.57.0
40
- name: Run tests
41
42
go test -race -coverprofile=coverage.out -covermode=atomic ./internal/librarian/golang
0 commit comments