diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 7247fb0..ecf517d 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -37,12 +37,11 @@ jobs: steps: - uses: actions/checkout@v3 - name: Get latest version of stable Rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true + run: rustup update stable + - name: Install cargo-tarpaulin + run: cargo install cargo-tarpaulin - name: Check code coverage with cargo-tarpaulin - uses: actions-rs/tarpaulin@v0.1 + run: cargo-tarpaulin --workspace --all-features --out xml - name: Upload to codecov.io uses: codecov/codecov-action@v2 with: