Skip to content

Commit

Permalink
Try add coveralls (thx @marcoieni actions-rs/tarpaulin#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
kellerkindt committed Mar 19, 2021
1 parent f7cb841 commit f4fa8ea
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,16 @@ jobs:
uses: actions-rs/[email protected]
with:
version: '0.15.0'
args: '--all-features -- --test-threads 1'
args: '--out Xml --out Lcov --all-features -- --test-threads 1'

- name: Archive code coverage results
uses: actions/upload-artifact@v1
with:
name: code-coverage-report
path: cobertura.xml
path: cobertura.xml

- name: Upload to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: './lcov.info'

0 comments on commit f4fa8ea

Please sign in to comment.