1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-22 05:29:44 +02:00

add circleci cache

This commit is contained in:
Anthony HAMON 2018-08-25 21:45:05 +02:00
parent a23753dc18
commit 4b19b4108e

View File

@ -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: