From f718ac5b3dd09d128d4ea6fb4db9349c859e8076 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Fri, 23 Jun 2023 22:01:06 +0300 Subject: [PATCH] github: drop obsolete cache step from test run It's handled by setup-go now and it doesn't work anyway: Restore cache failed: Dependencies file is not found in /home/runner/work/neofs-node/neofs-node. Supported file pattern: go.sum Signed-off-by: Roman Khimov --- .github/workflows/go.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index f144c69d36..9be2e82703 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -30,14 +30,6 @@ jobs: - name: Check out code uses: actions/checkout@v3 - - name: Cache go mod - uses: actions/cache@v3 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go-${{ matrix.go }}- - - name: Run go test run: go test -coverprofile=coverage.txt -covermode=atomic ./...