We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd9d6ab commit 66f7a98Copy full SHA for 66f7a98
.github/workflows/build.main.kts
@@ -33,4 +33,13 @@ workflow(
33
uses(CheckoutV3())
34
uses(GithubActionsTypingV0())
35
}
36
+
37
+ job(
38
+ id = "build_kotlin_scripts",
39
+ name = "Build Kotlin scripts",
40
+ runsOn = RunnerType.UbuntuLatest,
41
+ ) {
42
+ uses(CheckoutV3())
43
+ run("find -name '*.main.kts' | xargs kotlinc")
44
+ }
45
}.writeToFile()
.github/workflows/build.yaml
@@ -43,3 +43,13 @@ jobs:
uses: actions/checkout@v3
- id: step-1
uses: krzema12/github-actions-typing@v0
46
+ "build_kotlin_scripts":
47
+ name: Build Kotlin scripts
48
+ runs-on: "ubuntu-latest"
49
+ needs:
50
+ - "check_yaml_consistency"
51
+ steps:
52
+ - id: step-0
53
+ uses: actions/checkout@v3
54
+ - id: step-1
55
+ run: find -name '*.main.kts' | xargs kotlinc
0 commit comments