GitHub Action to summarize JaCoCo code coverage CSV report and write to workflow job summary.
- uses: PineBale/jacoco-csv-summary@v1.0.1 # Refer to Releases for the latest version!
with:
# Path to CSV report file. Required.
csv-file: path/to/file.csv
# Whether to write to job summary or not. Default true.
write-summary: true
# Whether to write to status checks or not. Default false.
# If true, make sure to grant `checks` write permission.
write-check: false
# Status check name. Default is "Jacoco".
check-name: "Jacoco"
# GitHub token. Default is ${{ github.token }}
github-token: ${{ github.token }}