diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 295c154..71ba828 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,11 @@ jobs: - name: Download dependencies run: go mod download + - name: Clean build cache + run: | + go clean -cache + go mod tidy + - name: Run unit tests run: make test