This commit is contained in:
Lev Kokotov
2022-02-08 18:02:26 -08:00
parent 3cc41ab6c8
commit 9fe50c48e8
2 changed files with 14 additions and 11 deletions

View File

@@ -15,12 +15,15 @@ jobs:
steps:
- checkout
- restore_cache:
key: cargo-lock-{{ checksum "Cargo.lock" }}
key: cargo-lock-2-{{ checksum "Cargo.lock" }}
- run:
name: "Build"
command: "cargo build --release"
command: "cargo build"
- run:
name: "Test"
command: "cargo test"
- save_cache:
key: cargo-lock-{{ checksum "Cargo.lock" }}
key: cargo-lock-2-{{ checksum "Cargo.lock" }}
paths:
- target
- ~/.cargo