From 79cb86f712db5b2557732ec392e0fe6234248778 Mon Sep 17 00:00:00 2001 From: Julian Lawrence Date: Mon, 3 Jan 2022 21:05:25 -0800 Subject: [PATCH] ci: Cache dependencies for other submodules (#1044) Follow up to #1043: Also cache dependencies for other submodules in the repo. --- .github/workflows/go.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index af66dfa0a..5398afe15 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -38,7 +38,9 @@ jobs: - name: Download Dependencies run: | go mod download - cd tools && go mod download + (cd tools && go mod download) + (cd benchmarks && go mod download) + (cd zapgrpc/internal/test && go mod download) - name: Lint if: matrix.latest