ref(action): remove redundant caching

This commit is contained in:
Kristian Borgwarth 2026-04-03 02:50:10 +02:00
parent a0bd68ea7a
commit b78c849b21

View file

@ -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/...