diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-12-07 18:50:23 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-12-07 18:51:51 +0530 |
commit | eefbaca6125a5cfbd681eeeec890f380d84caf36 (patch) | |
tree | 3793fdd1aee0a1f4015a53e71eca86b052a49cc5 | |
parent | 57d0dbad36d1a2c2e37246d8a9b287cb0b9eb470 (diff) |
github: add code-coverage PR job
-rw-r--r-- | .github/workflows/pull_request.yml | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index c159ec16..45477550 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -188,3 +188,63 @@ jobs: uses: gradle/gradle-build-action@v2.0.1 with: arguments: lintDebug + + code-coverage: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2.4.0 + with: + fetch-depth: 0 + + - name: Check if relevant files have changed + uses: actions/github-script@v4.0.0 + id: service-changed + with: + result-encoding: string + script: | + const script = require('.github/check-changed-files.js') + return await script({github, context}) + + - name: Set up JDK + if: ${{ steps.service-changed.outputs.result == 'true' }} + uses : actions/setup-java@v2.4.0 + with : + distribution : 'zulu' + java-version : '11' + cache: 'gradle' + + - name: Copy CI gradle.properties + if: ${{ steps.service-changed.outputs.result == 'true' }} + run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties + + - name: Generate coverage reports with kotlinx-kover + if: ${{ steps.service-changed.outputs.result == 'true' }} + uses: gradle/gradle-build-action@v2.0.1 + with: + arguments: koverXmlReport + + - name: Collect coverage reports + if: ${{ steps.service-changed.outputs.result == 'true' }} + uses: gradle/gradle-build-action@v2.0.1 + with: + arguments: koverCollectReports + + - name: Export coverage XMLs + if: ${{ steps.service-changed.outputs.result == 'true' }} + id: coverage-export + shell: bash + run: | + REPORTS="$(find ./build/coverage-reports/ -maxdepth 1 -type f -printf "${GITHUB_WORKSPACE}/%p," -name "*.xml")" + REPORTS="${REPORTS::${#REPORTS}-1}" + echo ::set-output name=REPORT_PATHS::${REPORTS} + + - name: Publish JaCoCo report to PR + if: ${{ steps.service-changed.outputs.result == 'true' }} + uses: madrapps/jacoco-report@v1.2 + with: + paths: ${{ steps.coverage-export.outputs.REPORT_PATHS }} + token: ${{ secrets.GITHUB_TOKEN }} + min-coverage-overall: 0 + min-coverage-changed-files: 40 + title: Code Coverage |