Skip to content

Commit b7c7639

Browse files
committed
.github: prevent both jobs from using caching
A recent change upgraded us to setup-go@v4, but failed to keep the "test" job without the use of any caching. Rename it to keep that clear.
1 parent 5c10154 commit b7c7639

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
on: [push, pull_request]
22
name: Test
33
jobs:
4-
test:
4+
test-nocache:
55
strategy:
66
matrix:
77
go-version: [1.20.x, 1.21.x]
@@ -12,6 +12,7 @@ jobs:
1212
- uses: actions/setup-go@v4
1313
with:
1414
go-version: ${{ matrix.go-version }}
15+
cache: false
1516
- run: go test ./...
1617

1718
test-cache:

0 commit comments

Comments
 (0)