Skip to content

Commit

Permalink
Fix CI on MSRV check (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor committed Aug 5, 2020
1 parent 235a76d commit ed4b708
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/linux.yml
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Generate coverage file
if: matrix.version == 'stable' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
run: |
which cargo-tarpaulin || cargo install cargo-tarpaulin
cargo install cargo-tarpaulin
cargo tarpaulin --out Xml --workspace --all-features
- name: Upload to Codecov
Expand All @@ -76,5 +76,7 @@ jobs:

- name: Clear the cargo caches
run: |
which cargo-cache || cargo install cargo-cache --no-default-features --features ci-autoclean
rustup update stable
rustup override set stable
cargo install cargo-cache --no-default-features --features ci-autoclean
cargo-cache

0 comments on commit ed4b708

Please sign in to comment.