We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d95649 commit 34a3e82Copy full SHA for 34a3e82
1 file changed
.github/workflows/full-build.yml
@@ -29,6 +29,17 @@ jobs:
29
java-version: ${{ matrix.java-version }}
30
distribution: 'temurin'
31
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
43
- name: Build
44
run: mvn -B install -P gradlePlugin --no-transfer-progress
45
env:
0 commit comments