Skip to content

Commit

Permalink
cache binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
friedrichwilken committed Dec 19, 2023
1 parent 2a29c0a commit fd9b4c5
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/pull-with-lifecycle-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ jobs:
with:
go-version-file: "./go.mod"

- name: Cache Binaries
id: cache-binaries
uses: actions/cache@v3
with:
path: bin
key: ${{ runner.os }}-bin

- name: Install k3d tools
run: |
make -C hack/ci/ install-k3d-tools
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/pull-without-lifecycle-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ jobs:
with:
go-version-file: "./go.mod"

- name: Cache Binaries
id: cache-binaries
uses: actions/cache@v3
with:
path: bin
key: ${{ runner.os }}-bin

- name: Install k3d tools
run: |
make -C hack/ci/ install-k3d-tools
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/push-with-lifecycle-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ jobs:
with:
go-version-file: "./go.mod"

- name: Cache Binaries
id: cache-binaries
uses: actions/cache@v3
with:
path: bin
key: ${{ runner.os }}-bin

- name: Install k3d tools
run: |
make -C hack/ci/ install-k3d-tools
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,12 @@ jobs:
with:
go-version-file: "./go.mod"

- name: Cache Binaries
id: cache-binaries
uses: actions/cache@v3
with:
path: bin
key: ${{ runner.os }}-bin

- name: Execute unit test
run: make test

0 comments on commit fd9b4c5

Please sign in to comment.