We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3eb871 commit 214e7f8Copy full SHA for 214e7f8
.circleci/config.yml
@@ -25,12 +25,7 @@ jobs:
25
- restore_cache:
26
keys:
27
- go-getter-modcache-v1-{{ checksum "go.mod" }}
28
-
29
- # Save go module cache if the go.mod file has changed
30
- - save_cache:
31
- key: go-getter-modcache-v1-{{ checksum "go.mod" }}
32
- paths:
33
- - "/go/pkg/mod"
+ - go-getter-modcache-v1
34
35
# check go fmt output because it does not report non-zero when there are fmt changes
36
- run:
@@ -52,6 +47,12 @@ jobs:
52
47
- store_artifacts:
53
48
path: *TEST_RESULTS_PATH
54
49
50
+ # Save go module cache if the go.mod file has changed
51
+ - save_cache:
+ key: go-getter-modcache-v1-{{ checksum "go.mod" }}
+ paths:
+ - "/go/pkg/mod"
55
+
56
workflows:
57
version: 2
58
test-and-build:
0 commit comments