Skip to content

Commit 7b72f3e

Browse files
authored
test: check if untyped action has untyped binding (#1596)
Part of #1585.
1 parent 83d25db commit 7b72f3e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/test-script-consuming-jit-bindings.main.do-not-compile.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,17 @@
1313
// Using specific version.
1414
@file:DependsOn("actions:cache:v3.3.3")
1515

16+
// Always untyped action.
17+
@file:DependsOn("typesafegithub:always-untyped-action-for-tests:v1")
18+
1619
import io.github.typesafegithub.workflows.actions.actions.Cache
1720
import io.github.typesafegithub.workflows.actions.actions.Checkout
1821
import io.github.typesafegithub.workflows.actions.actions.Checkout_Untyped
1922
import io.github.typesafegithub.workflows.actions.gradle.ActionsSetupGradle
23+
import io.github.typesafegithub.workflows.actions.typesafegithub.AlwaysUntypedActionForTests_Untyped
2024

2125
println(Checkout_Untyped(fetchTags = "false"))
2226
println(Checkout(fetchTags = false))
27+
println(AlwaysUntypedActionForTests_Untyped(foobar = "baz"))
2328
println(ActionsSetupGradle())
2429
println(Cache(path = listOf("some-path"), key = "some-key"))

0 commit comments

Comments
 (0)