Init space CI

This commit is contained in:
Алексей Овсянников 2021-06-26 13:38:30 +00:00 committed by Space
parent 611f64f2e1
commit 1309867611

8
.space.kts Normal file
View File

@ -0,0 +1,8 @@
job("Build and run tests") {
container(displayName = "Run gradle build", image = "openjdk:11") {
kotlinScript { api ->
// here can be your complex logic
api.gradlew("build")
}
}
}