Add go clean in Dockerfile and action.

Signed-off-by: Xun Jiang <jxun@vmware.com>
This commit is contained in:
Xun Jiang
2023-09-28 20:30:05 +08:00
parent c6191797b4
commit 64595cc0f7
2 changed files with 8 additions and 3 deletions
+4 -1
View File
@@ -48,7 +48,10 @@ jobs:
version: latest
- name: Build
run: make local
run: |
make local
# Clean go cache to ease the build environment storage pressure.
go clean -modcache -cache
- name: Test
run: make test