How can I ensure that a custom task created with `...
# gradle
t
How can I ensure that a custom task created with
tasks.register()
runs as part of the
check
lifecycle in Gradle's Kotlin DSL?
e
Copy code
tasks.named("check") {
    dependsOn("myCustomTask")
}
t
Thanks! That works! 🙂