Skip to content

Commit

Permalink
remove cache step in coverage check in CI (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
echeran authored Oct 13, 2020
1 parent dabd9f2 commit 24b22c9
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v2

## Cache steps

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

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

- name: Cache cargo build
uses: actions/cache@v1
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}
# TODO(#315) Re-include caching that also includes the Rust version in the cache key

## Coverage steps

Expand Down

0 comments on commit 24b22c9

Please sign in to comment.