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 cacf064 commit b56f1b4Copy full SHA for b56f1b4
.github/workflows/test.yml
@@ -52,6 +52,16 @@ jobs:
52
run: |
53
cd test && go mod download
54
55
+ # Cache envtest binaries so we don't re-download from
56
+ # https://github.com/kubernetes-sigs/controller-tools/releases/...
57
+ # every run (helps avoid 503s).
58
+ - name: Cache envtest binaries
59
+ id: cache-envtest
60
+ uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
61
+ with:
62
+ path: ~/.local/share/kubebuilder-envtest
63
+ key: local-share-kubebuilder-envtest-${{ runner.os }}
64
+
65
- name: Running tests
66
run: make test-unit
67
0 commit comments