10 lines
237 B
Plaintext
10 lines
237 B
Plaintext
|
/**
|
||
|
* JetBrains Space Automation
|
||
|
* This Kotlin-script file lets you automate build activities
|
||
|
* For more info, see https://www.jetbrains.com/help/space/automation.html
|
||
|
*/
|
||
|
|
||
|
job("Build and run tests") {
|
||
|
gradlew("openjdk:11", "build")
|
||
|
}
|