From cdca9d7a2d63463da6a627c180a6184cc18d6639 Mon Sep 17 00:00:00 2001 From: rock Date: Sun, 30 Aug 2026 07:34:26 -0700 Subject: [PATCH] fix: disable actions cache to debug go vet failures --- .gitea/workflows/ci.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index bb0f652..1b61273 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -34,14 +34,14 @@ jobs: REGISTRY_PAT: ${{ secrets.REGISTRY_PAT }} - name: cache go modules + build cache - uses: actions/cache@v4 - with: - path: | + # uses: actions/cache@v4 + # with: + # path: | ~/.cache/go-build ~/go/pkg/mod - key: go-${{ runner.os }}-${{ hashFiles('go.sum') }} - restore-keys: | - go-${{ runner.os }}- + # key: # go-${{ runner.os }}-${{ hashFiles('go.sum') }} + # restore-keys: | + # go-${{ runner.os }}- - name: gofmt run: | @@ -66,6 +66,6 @@ jobs: - name: upload coverage uses: actions/upload-artifact@v4 - with: + # with: name: coverage path: coverage.out