Skip to content

Commit

Permalink
install grcov
Browse files Browse the repository at this point in the history
  • Loading branch information
nbari committed Nov 12, 2024
1 parent 9601a61 commit 97aa353
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ jobs:
- name: List profile files
run: ls -al

- name: Install grcov
run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi

- name: Run grcov
run: grcov . --binary-path target/debug/deps/ -s . -t lcov --branch --ignore-not-existing
--ignore '../**' --ignore '/*' -o coverage.lcov
Expand Down

0 comments on commit 97aa353

Please sign in to comment.