Use circleci cache

This commit is contained in:
Geoff Bourne 2018-05-09 18:45:11 -05:00
parent f83520e05a
commit 013f0cc4f6

View File

@ -22,7 +22,19 @@ jobs:
steps:
- checkout
- restore_cache:
keys:
- cache-{{ arch }}-{{ .Branch }}-{{ checksum "Gopkg.lock" }}
- cache-{{ arch }}-{{ .Branch }}
- cache
- run: make install-dep
- save_cache:
key: cache-{{ arch }}-{{ .Branch }}-{{ checksum "Gopkg.lock" }}
paths:
- vendor
- run: make test
release: