Skip to content

Commit 5f3a998

Browse files
committed
fix reports files
1 parent b7112e2 commit 5f3a998

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/testReportJob.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,17 @@ jobs:
5252
echo "keyPassword=$KEYSTORE_KEY_PASSWORD" >> keystore.properties
5353
5454
- name: Build application
55-
run: ./gradlew koverReport --full-stacktrace
55+
run: ./gradlew koverHtmlReport --full-stacktrace
5656

5757
- name: Check report files
5858
run: |
59-
ls app/build/reports/kover/project-html
59+
ls /build/reports/kover/html
6060
6161
- name: Archive code coverage results
6262
uses: actions/upload-artifact@v3
6363
with:
6464
name: code-coverage-report
65-
path: app/build/reports/kover/project-html
65+
path: /build/reports/kover/html
6666

6767
saveReport:
6868
name: SaveReport

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id("org.jetbrains.kotlinx.kover") version "0.5.0"
2+
id("org.jetbrains.kotlinx.kover") version "0.7.6"
33
alias(libs.plugins.application) apply false
44
alias(libs.plugins.kotlin) apply false
55
alias(libs.plugins.library) apply false

0 commit comments

Comments
 (0)