Skip to content

Commit 34a3e82

Browse files
committed
build: ci: install GO so gRPC reflection test can run with grpcurl
1 parent 1d95649 commit 34a3e82

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/full-build.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,17 @@ jobs:
2929
java-version: ${{ matrix.java-version }}
3030
distribution: 'temurin'
3131
cache: maven
32+
33+
# 1. Set up Go (cross-platform)
34+
- name: Set up Go
35+
uses: actions/setup-go@v5
36+
with:
37+
go-version: 'stable'
38+
39+
# 2. Install grpcurl (this places it in the $PATH automatically)
40+
- name: Install grpcurl
41+
run: go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest
42+
3243
- name: Build
3344
run: mvn -B install -P gradlePlugin --no-transfer-progress
3445
env:

0 commit comments

Comments
 (0)