mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2024-11-15 01:42:45 +01:00
12 lines
272 B
Kotlin
12 lines
272 B
Kotlin
package _Self.subprojects
|
|
|
|
import _Self.buildTypes.GithubTests
|
|
import jetbrains.buildServer.configs.kotlin.v2019_2.Project
|
|
|
|
object GitHub : Project({
|
|
name = "Pull Requests checks"
|
|
description = "Automatic checking of GitHub Pull Requests"
|
|
|
|
buildType(GithubTests)
|
|
})
|