make ci actually run the tests

This commit is contained in:
Konrad Pozniak 2020-09-30 21:10:42 +02:00
parent 36f1a5f6c0
commit c339820983
1 changed files with 3 additions and 0 deletions

View File

@ -53,6 +53,9 @@ tasks {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
}
withType<Test> {
useJUnitPlatform()
}
}
dependencies {