Skip to content

Commit 79cb86f

Browse files
authored
ci: Cache dependencies for other submodules (#1044)
Follow up to #1043: Also cache dependencies for other submodules in the repo.
1 parent da733e5 commit 79cb86f

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
@@ -38,7 +38,9 @@ jobs:
3838
- name: Download Dependencies
3939
run: |
4040
go mod download
41-
cd tools && go mod download
41+
(cd tools && go mod download)
42+
(cd benchmarks && go mod download)
43+
(cd zapgrpc/internal/test && go mod download)
4244
4345
- name: Lint
4446
if: matrix.latest

0 commit comments

Comments
 (0)