summaryrefslogtreecommitdiffstats
path: root/.circleci
diff options
context:
space:
mode:
authorAnthony HAMON <anthony.hamon@iadvize.com>2018-08-25 21:45:05 +0200
committerAnthony HAMON <anthony.hamon@iadvize.com>2018-08-26 01:58:20 +0200
commit4b19b4108ed2facb91efdf936c8c4bc5fe1f9ff1 (patch)
treecaf23b1ecf837e6117cb363930dc0146cb3195ca /.circleci
parenta23753dc188bfc36b8f5694d196ba604a5f5fe1e (diff)
add circleci cache
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 0f79df38a..e57569829 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -7,6 +7,9 @@ jobs:
working_directory: /go/src/github.com/jesseduffield/lazygit
steps:
- checkout
+ - restore_cache:
+ keys:
+ - v1-pkg-cache
- run:
name: Run tests
command: |
@@ -20,6 +23,10 @@ jobs:
name: Push on codecov result
command: |
bash <(curl -s https://codecov.io/bash)
+ - save_cache:
+ key: v1-pkg-cache
+ paths:
+ - "/go/pkg"
release:
docker: