Skip to content

Commit e35a711

Browse files
committed
restore
1 parent a3ce166 commit e35a711

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/golang.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,14 @@ jobs:
2929
- uses: ./.github/actions/install-protoc
3030
- name: Install Go dependencies
3131
run: |
32-
go mod tidy
32+
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
3340
- name: Run tests
3441
run: |
3542
go test -race -coverprofile=coverage.out -covermode=atomic ./internal/librarian/golang

0 commit comments

Comments
 (0)