Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
percent

GitHub Action

Kotlinx Kover Report

v1.2-beta Pre-release

Kotlinx Kover Report

percent

Kotlinx Kover Report

Github action that publishes the Kover code coverage report as a comment in pull requests

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Kotlinx Kover Report

uses: mi-kas/[email protected]

Learn more about this action in mi-kas/kover-report

Choose a version

kover-report

Tests

A Github action that publishes the Kover code coverage report as a comment in pull requests.

Usage

Pre-requisites

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.

Inputs

  • path - [required string] Path to the generated kover report xml file
  • token - [required string] Github personal token to add commits to the pull request
  • title - [optional string] Title for the pull request comment
  • update-comment - [optional boolean (default: false)] Update the coverage report comment instead of creating a new one. Requires title to be set.
  • min-coverage-overall - [optional integer] The minimum code coverage that is required to pass for overall project
  • min-coverage-changed-files - [optional integer] The minimum code coverage that is required to pass for changed files

Outputs

  • coverage-overall - [integer] The overall coverage of the project
  • coverage-changed-files - [integer] The total coverage of all changed files

Example Workflow

name: Measure coverage

on:
  pull_request:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Set up JDK
        uses: actions/setup-java@v3
        with:
          java-version: 11
      - name: Set up Gradle
        uses: gradle/gradle-build-action@v2
      - name: Generate kover coverage report
        run: ./gradlew koverXmlReport

      - name: Add coverage report to PR
        id: kover
        uses: mi-kas/kover-report@v1
        with:
          path: ${{ github.workspace }}/build/reports/kover/report.xml
          token: ${{ secrets.GITHUB_TOKEN }}
          title: Code Coverage
          update-comment: true
          min-coverage-overall: 80
          min-coverage-changed-files: 80

output screenshot

License

The scripts and documentation in this project are released under the MIT License