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 57cc7cf commit 3c721a4Copy full SHA for 3c721a4
1 file changed
.github/workflows/ci.yml
@@ -24,9 +24,14 @@ jobs:
24
uses: actions/checkout@v4
25
26
- name: Set up Bazel
27
- uses: bazelbuild/setup-bazel@v3
+ uses: bazel-contrib/setup-bazel@0.14.0
28
with:
29
- bazel-version: 'latest'
+ # Avoid downloading Bazel every time.
30
+ bazelisk-cache: true
31
+ # Store build cache per workflow.
32
+ disk-cache: ${{ github.workflow }}
33
+ # Share repository cache between workflows.
34
+ repository-cache: true
35
36
- name: Bazel tests
37
run: bazel test src:all
0 commit comments