Skip to content

Commit

Permalink
ci: enable cargo cache
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieC3 committed Sep 21, 2023
1 parent 0e3f4af commit ae95c38
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,15 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Cache cargo
uses: actions/cache@v3
with:
path: ~/.cargo/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Install and run cargo-tarpaulin
run: |
cargo install cargo-tarpaulin
Expand Down

0 comments on commit ae95c38

Please sign in to comment.