diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index b233dc67..d1623ddc 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -160,6 +160,10 @@ jobs: with: toolchain: nightly override: true + - uses: actions-rs/install@v0.1 + with: + crate: cargo-tarpaulin + version: latest - name: Cache ~/.cargo uses: actions/cache@v1 with: @@ -170,9 +174,11 @@ jobs: with: path: target key: ${{ runner.os }}-coverage-cargo-build-target - - uses: actions-rs/tarpaulin@v0.1 + - name: Run tarpaulin + uses: actions-rs/cargo@v1 with: - args: --all + command: tarpaulin + args: --workspace --out Xml - name: upload coverage uses: codecov/codecov-action@v1 with: diff --git a/.gitignore b/.gitignore index 2bb17fd2..1417d84d 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ **/*.rs.bk .idea/ +.vscode/