From b79ff4a1ea9c99766e7ebeec09272153bed0e8aa Mon Sep 17 00:00:00 2001 From: Sergei Zakharenko Date: Tue, 21 Nov 2023 17:27:17 +0300 Subject: [PATCH] Jacoco report workflow added. --- .github/workflows/jacoco_report.yml | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/jacoco_report.yml diff --git a/.github/workflows/jacoco_report.yml b/.github/workflows/jacoco_report.yml new file mode 100644 index 0000000..47245a8 --- /dev/null +++ b/.github/workflows/jacoco_report.yml @@ -0,0 +1,32 @@ +# A Github action that publishes the JaCoCo report as a comment + +name: Measure coverage + +on: + push: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: 17 + - 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/reports/jacoco/testCoverage/testCoverage.xml + token: ${{ secrets.GITHUB_TOKEN }} + min-coverage-overall: 40 + min-coverage-changed-files: 60 + title: Code Coverage + update-comment: true \ No newline at end of file