Create coverage.yml

This commit is contained in:
usbharu 2023-11-07 00:45:38 +09:00 committed by GitHub
parent 381d07bf62
commit cfe962ee90
1 changed files with 31 additions and 0 deletions

31
.github/workflows/coverage.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: Coverage
on:
pull_request:
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'
distribution: 'temurin'
- name: Run JUnit
uses: gradle/gradle-build-action@v2.8.1
with:
arguments: 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
coverage-counter-type: LINE