We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c72f03 commit 79e7240Copy full SHA for 79e7240
2 files changed
.github/workflows/build.yml
@@ -129,8 +129,6 @@ jobs:
129
name: github-pages
130
url: ${{ steps.deployment.outputs.page_url }}
131
steps:
132
- - uses: actions/checkout@v4
133
-
134
- name: Download documentation
135
uses: actions/download-artifact@v4
136
with:
buildSrc/src/main/kotlin/common-library.gradle.kts
@@ -23,7 +23,12 @@ kotlin { compilerOptions { freeCompilerArgs.add("-opt-in=kotlin.RequiresOptIn")
23
24
tasks.jar { duplicatesStrategy = WARN }
25
26
-tasks.test { useJUnitPlatform() }
+tasks.test {
27
+ useJUnitPlatform()
28
+ reports {
29
+ junitXml.required.set(true)
30
+ }
31
+}
32
33
dokka {
34
dokkaSourceSets {
0 commit comments