diff --git a/.github/workflows/ci-unit-tests-go-tip.yml b/.github/workflows/ci-unit-tests-go-tip.yml index f50b9875a76..1218da61d98 100644 --- a/.github/workflows/ci-unit-tests-go-tip.yml +++ b/.github/workflows/ci-unit-tests-go-tip.yml @@ -40,6 +40,11 @@ jobs: with: gh_token: ${{ secrets.GITHUB_TOKEN }} + - name: Clean Go cache for gotip + run: | + go clean -cache + go clean -modcache + - name: Run unit tests run: make test-ci