diff --git a/.github/actions-rs/grcov.yml b/.github/actions-rs/grcov.yml deleted file mode 100644 index 9f4842f..0000000 --- a/.github/actions-rs/grcov.yml +++ /dev/null @@ -1,2 +0,0 @@ -output-type: html -output-path: ./coverage/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d431c3b..597fd1f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -48,7 +48,12 @@ jobs: - name: Gather coverage data id: coverage - uses: actions-rs/grcov@v0.1 + uses: actions-rs/grcov@d7fbf3f45736014e4361af190e8a5269060ace07 + with: + args: > + --output-type html + --output-path ./coverage/ + ./target/debug - name: Measure current and main coverage and craft a message to be inserted in the PR id: measure_coverage