1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-04-19 17:26:51 +00:00

build: register task to run all tests at once

This commit is contained in:
Paul-Christian Volkmer 2024-05-03 16:37:16 +02:00
parent c3ddb387e2
commit 2244ef1b86

View File

@ -114,6 +114,10 @@ task<Test>("integrationTest") {
shouldRunAfter("test")
}
tasks.register("allTests") {
dependsOn(tasks.withType<Test>())
}
tasks.named<BootBuildImage>("bootBuildImage") {
imageName.set("ghcr.io/ccc-mf/etl-processor")