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