You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
JaCoCo Report
v1.4
A Github action that publishes the JaCoCo report as a comment in the Pull Request with customizable pass percentage for modified files and for the entire project.
Create a workflow .yml
file in your repositories .github/workflows
directory. An example workflow is available below. For more information, reference the GitHub Help Documentation for Creating a workflow file.
paths
- [required] Comma separated paths of the generated jacoco xml files.token
- [required] Github personal token to add commits to Pull Requestmin-coverage-overall
- [optional] The minimum code coverage that is required to pass for overall projectmin-coverage-changed-files
- [optional] The minimum code coverage that is required to pass for changed filesupdate-comment
- [optional] Updates the coverage report comment instead of creating new ones. Requirestitle
to work properly.title
- [optional] Title for the Pull Request comment
coverage-overall
- The overall coverage of the projectcoverage-changed-files
- The total coverage of all changed files
name: Measure coverage
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Run Coverage
run: |
chmod +x gradlew
./gradlew testCoverage
- name: Add coverage to PR
id: jacoco
uses: madrapps/[email protected]
with:
paths: ${{ github.workspace }}/build/reports/jacoco/testCoverage/testCoverage.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 40
min-coverage-changed-files: 60
For a working project refer to jacoco-playgound. Check out the PR's in the project to get an idea on how the report is shown on a pull request comment. For multi module gradle project, refer jacoco-android-playground
The scripts and documentation in this project are released under the MIT License