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