adjust ci caching

This commit is contained in:
Greg 2018-12-23 00:11:52 -05:00
parent d8f2f1e20d
commit 085d4ec12f

View file

@ -8,15 +8,16 @@ jobs:
- checkout - checkout
- restore_cache: - restore_cache:
key: project-cache key: v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}
- run: - run:
name: Test name: Test
command: cargo check command: cargo check
- save_cache: - save_cache:
key: project-cache
paths: paths:
- "~/.cargo" - "~/.cargo"
- "./target" - "./target"
- /usr/local/cargo/registry
key: v4-cargo-cache-{{ arch }}-{{ checksum "Cargo.lock" }}