Skip to content

Commit d49587d

Browse files
committed
ci(workflow): add caching for tools folder in test workflow
1 parent d4c0fdc commit d49587d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ jobs:
4545
with:
4646
go-version: "1.23"
4747

48+
- name: Restore Cache for Tools
49+
uses: actions/cache@v3
50+
with:
51+
path: ./target/tools
52+
key: tools-cache-${{ runner.os }}-${{ hashFiles('Makefile') }}
53+
4854
- name: Test go project
4955
run: |
5056
make test-go

0 commit comments

Comments
 (0)