archive
/
md-pdf-rs
Archived
1
Fork 0

Update cache key

This commit is contained in:
Jake Howard 2017-08-15 22:59:54 +01:00
parent 535a91713e
commit 4a133fc8a8
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ jobs:
- checkout
- restore_cache:
keys:
- cargo
- cargo-{{ checksum "Cargo.lock" }}
- run: which rustfmt || cargo install rustfmt
- run: apt update && apt install -y wget
- run: ./scripts/install-deps.sh
@ -17,7 +17,7 @@ jobs:
- run: cargo build
- run: cargo build --release
- save_cache:
key: cargo
key: cargo-{{ checksum "Cargo.lock" }}
paths:
- ~/.cargo
- run: cargo test