From b78c849b212688ce70cdab5a11493f4ecbd49877 Mon Sep 17 00:00:00 2001 From: Kristian Borgwarth <10348902@pm.me> Date: Fri, 3 Apr 2026 02:50:10 +0200 Subject: [PATCH] ref(action): remove redundant caching --- .github/workflows/test.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 08c17a0..bd0438a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,14 +15,7 @@ jobs: uses: actions/setup-go@v5 with: go-version-file: go.mod - - - name: Cache Go modules - uses: actions/cache@v4 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }} - restore-keys: | - ${{ runner.os }}-go- + cache: true - name: Run unit tests run: go test ./test/test_unit/...