Jacoco report workflow added. #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A Github action that publishes the JaCoCo report as a comment | ||
name: Measure coverage | ||
on: | ||
push: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
push: write | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
distribution: | ||
- name: Run Coverage | ||
run: | | ||
chmod +x gradlew | ||
./gradlew testCoverage | ||
- name: Jacoco Report | ||
id: jacoco | ||
uses: madrapps/jacoco-report@v1.6.1 | ||
with: | ||
paths: ${{ github.workspace }}/build/site/jacoco/jacoco.xml | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
min-coverage-overall: 40 | ||
min-coverage-changed-files: 60 | ||
title: Code Coverage | ||
update-comment: true |