diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 25f36913..29575e85 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -17,20 +17,20 @@ jobs: - name: git config run: git config --global url.https://${{ secrets.ANYTYPE_PAT }}@github.com/.insteadOf https://github.com/ - # cache {{ - - id: go-cache-paths - run: | - echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_OUTPUT - echo "GOMODCACHE=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 - with: - path: | - ${{ steps.go-cache-paths.outputs.GOCACHE }} - ${{ steps.go-cache-paths.outputs.GOMODCACHE }} - key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go-${{ matrix.go-version }}- - # }} + # # cache {{ + # - id: go-cache-paths + # run: | + # echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_OUTPUT + # echo "GOMODCACHE=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT + # - uses: actions/cache@v3 + # with: + # path: | + # ${{ steps.go-cache-paths.outputs.GOCACHE }} + # ${{ steps.go-cache-paths.outputs.GOMODCACHE }} + # key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }} + # restore-keys: | + # ${{ runner.os }}-go-${{ matrix.go-version }}- + # # }} - name: deps run: make deps