Skip to content

Commit 113cc4e

Browse files
committed
Update CI workflow and increase Kover coverage threshold
- Add `ktlintCheck`, `koverLog`, and `koverHtmlReport` to Gradle build step in CI. - Increase minimum coverage threshold from 60% to 65%.
1 parent e749aaa commit 113cc4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cache-read-only: true
3333

3434
- name: Build with Gradle
35-
run: ./gradlew clean build
35+
run: ./gradlew clean ktlintCheck build koverLog koverHtmlReport
3636

3737
- name: Upload Reports
3838
if: always()

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ kover {
3030
}
3131
verify {
3232
rule {
33-
minBound(60)
33+
minBound(65)
3434
}
3535
}
3636
}

0 commit comments

Comments
 (0)