Skip to content

Commit da733e5

Browse files
authored
ci: Cache tools/ with GitHub Actions (#1043)
We run `go mod download` to populate `$GOPATH/pkg` with dependencies, the contents of which are later cached. We did not previously run this for the tools submodule, so those dependencies were not getting cached.
1 parent 369c1bd commit da733e5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/go.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ jobs:
3636
${{ runner.os }}-go-
3737
3838
- name: Download Dependencies
39-
run: go mod download
39+
run: |
40+
go mod download
41+
cd tools && go mod download
4042
4143
- name: Lint
4244
if: matrix.latest

0 commit comments

Comments
 (0)