Compare commits

...

3 commits

Author SHA1 Message Date
355f12b569 chore(deps): update dependency org.junit.jupiter:junit-jupiter-api to v5.8.2
All checks were successful
continuous-integration/drone/push Build is passing
2022-07-04 12:39:46 +00:00
631ee8f716 Remove extra pipeline on PRs (#9)
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: kalle/DLib#9
2022-07-04 14:28:24 +02:00
14a32bc55b fix: Remove extra pipeline on PRs
All checks were successful
continuous-integration/drone/push Build is passing
2022-07-04 14:25:12 +02:00
2 changed files with 1 additions and 2 deletions

View file

@ -38,5 +38,4 @@ steps:
trigger: trigger:
event: event:
- push - push
- pull_request
- tag - tag

View file

@ -26,7 +26,7 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-scripting-jvm-host") implementation("org.jetbrains.kotlin:kotlin-scripting-jvm-host")
testImplementation(kotlin("test-junit5")) testImplementation(kotlin("test-junit5"))
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0") testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.0") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.0")
} }