We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de39511 commit f7997b1Copy full SHA for f7997b1
1 file changed
.github/workflows/build.yml
@@ -23,12 +23,21 @@ jobs:
23
with:
24
go-version: "1.26"
25
26
- - name: Install Bazelisk
+ - name: Install Bazelisk on UNIX/Linux
27
+ if: matrix.platform != 'windows-latest'
28
run: |
29
go install github.com/bazelbuild/bazelisk@latest
30
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
31
export USE_BAZEL_VERSION=8.3.0
32
bazel version
33
+
34
+ - name: Install Bazelisk on Windows
35
+ if: matrix.platform == 'windows-latest'
36
+ run: |
37
+ go install github.com/bazelbuild/bazelisk@latest
38
+ echo "$(go env GOPATH)\bin" >> $GITHUB_PATH
39
+ setx USE_BAZEL_VERSION 8.3.0
40
+ bazel version
41
42
- name: Checkout code
43
uses: actions/checkout@v3
0 commit comments