We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It will show what code is not covered by tests. Here is a job for this I'm using in a github actions workflow:
test_coverage: name: Code coverage in tests runs-on: ubuntu-latest container: image: xd009642/tarpaulin:latest options: --security-opt seccomp=unconfined steps: - name: Checkout repository uses: actions/checkout@v2 - name: Generate code coverage run: | cargo tarpaulin --verbose --all-features --workspace --timeout=360 --out Lcov - name: Push code coverage results to coveralls.io uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: ./lcov.info
Originally posted by @greenhat in #5 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Originally posted by @greenhat in #5 (comment)
The text was updated successfully, but these errors were encountered: