Loading constant colors from resources & doc #5
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
name: Verify PR labels | |
on: | |
pull_request: | |
types: [ opened, labeled, unlabeled, synchronize ] | |
jobs: | |
label_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: zwaldowski/match-label-action@v2 | |
with: | |
allowed: fix, features, documentation, config | |
kover_report: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⚡️Checkout | |
uses: actions/checkout@v3 | |
- name: 🐘Setup 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 }}/colsum/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 |