add tests for various actions

This commit is contained in:
Casey Lee
2019-01-30 23:53:39 -08:00
parent 5d0a8d26ae
commit ecae898a7b
34 changed files with 4197 additions and 4 deletions

13
actions/testdata/fail.workflow vendored Normal file
View File

@@ -0,0 +1,13 @@
workflow "test" {
on = "push"
resolves = ["test-action"]
}
action "test-action" {
uses = "docker://alpine:3.9"
runs = ["sh", "-c", "echo $IN | grep $OUT"]
env = {
IN = "foo"
OUT = "bar"
}
}