Skip to content

Commit 79e7240

Browse files
committed
pages doesn't need the repo
1 parent 4c72f03 commit 79e7240

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,6 @@ jobs:
129129
name: github-pages
130130
url: ${{ steps.deployment.outputs.page_url }}
131131
steps:
132-
- uses: actions/checkout@v4
133-
134132
- name: Download documentation
135133
uses: actions/download-artifact@v4
136134
with:

buildSrc/src/main/kotlin/common-library.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ kotlin { compilerOptions { freeCompilerArgs.add("-opt-in=kotlin.RequiresOptIn")
2323

2424
tasks.jar { duplicatesStrategy = WARN }
2525

26-
tasks.test { useJUnitPlatform() }
26+
tasks.test {
27+
useJUnitPlatform()
28+
reports {
29+
junitXml.required.set(true)
30+
}
31+
}
2732

2833
dokka {
2934
dokkaSourceSets {

0 commit comments

Comments
 (0)