Skip to content

Commit

Permalink
short-term fix of coverage check in CI by removing caching
Browse files Browse the repository at this point in the history
  • Loading branch information
echeran committed Oct 11, 2020
1 parent 600694e commit c918e0a
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 @@ -15,25 +15,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 c918e0a

Please sign in to comment.