diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 72a44fc..06045be 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -16,11 +16,14 @@ jobs: - uses: actions/checkout@v2 - name: Create Test Media run: cd tests; sh create_test_media.sh - - run: cargo install rustfilt + - name: Install rustfilt + run: cargo install rustfilt + - name: Install tapaulin + run: cargo install cargo-tarpaulin - name: Build run: cargo build --verbose - name: Run tests - run: cargo test --tests + run: cargo tarpaulin env: RUSTFLAGS: "-C instrument-coverage" - name: rust-grcov