Skip to content

Commit

Permalink
fix(ci): Bump actions-rs/grcov to d7fbf3f
Browse files Browse the repository at this point in the history
  • Loading branch information
rajivshah3 committed Jan 22, 2021
1 parent abc5a9a commit 35d3c5a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
8 changes: 0 additions & 8 deletions .github/actions-rs/grcov.yml

This file was deleted.

13 changes: 11 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,20 @@ jobs:
RUSTDOCFLAGS: "-Cpanic=abort"

- name: Collect test coverage data
uses: actions-rs/grcov@v0.1
uses: actions-rs/grcov@d7fbf3f
id: coverage
with:
args: >
-t lcov
--llvm
--branch
--ignore-not-existing
--ignore "/*"
-o ./target/lcov.info
./target/debug/
- name: Upload coverage data to Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ${{ steps.coverage.outputs.report }}
path-to-lcov: ./target/lcov.info

0 comments on commit 35d3c5a

Please sign in to comment.