diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2edb7c3..8eb810a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -82,11 +82,11 @@ jobs: toolchain: stable override: true + - name: Install cargo-tarpaulin + run: "cargo install cargo-tarpaulin -f" + - name: Run cargo-tarpaulin - uses: actions-rs/tarpaulin@v0.1 - with: - timeout: 1200 - args: "--verbose --all-features --ignored --exclude-files fuzz" + run: "cargo tarpaulin --out Xml --verbose --all-features --run-types Tests,Doctests --ignored --exclude-files fuzz --timeout 1200" - name: Upload to codecov.io uses: codecov/codecov-action@v1