Skip to content

Commit

Permalink
Fix CI modules cache (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
paivagustavo authored and rghetia committed Nov 14, 2019
1 parent 2950978 commit b6ada23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- restore_cache: # restores saved cache if no changes are detected since last run
keys:
- v1-pkg-{{ checksum "go.sum" }}
- go-pkg-mod-{{ checksum "go.sum" }}

- run:
name: "Precommit and Coverage Report"
Expand All @@ -22,9 +22,9 @@ jobs:
mv coverage.html $TEST_RESULTS/
- save_cache:
key: v1-pkg-{{ checksum "go.sum" }}
key: go-pkg-mod-{{ checksum "go.sum" }}
paths:
- "~/go/pkg/mod"
- "/go/pkg/mod"

- store_artifacts:
path: /tmp/test-results
Expand Down

0 comments on commit b6ada23

Please sign in to comment.