Skip to content

Commit aa6544a

Browse files
committed
Clean Go cache after installing gotip
- Add go clean commands after gotip installation - Clear build cache and module cache to prevent version mismatches Signed-off-by: Kavish-12345 <[email protected]>
1 parent c098f45 commit aa6544a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci-unit-tests-go-tip.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
with:
4141
gh_token: ${{ secrets.GITHUB_TOKEN }}
4242

43+
- name: Clean Go cache for gotip
44+
run: |
45+
go clean -cache
46+
go clean -modcache
47+
4348
- name: Run unit tests
4449
run: make test-ci
4550

0 commit comments

Comments
 (0)