fix: added tests and improved code

This commit is contained in:
Carlos Alexandro Becker
2019-05-23 01:39:57 -03:00
parent 03d57a80c9
commit 8d181a6a1e
4 changed files with 116 additions and 47 deletions

View File

@@ -1,9 +1,17 @@
workflow "test" {
on = "push"
resolves = ["test-action"]
resolves = [
"test-action-repo",
"test-action-ref",
]
}
action "test-action" {
action "test-action-repo" {
uses = "docker://alpine:3.9"
runs = ["sh", "-c", "echo $GITHUB_REPOSITORY | grep '^nektos/act$'"]
}
}
action "test-action-ref" {
uses = "docker://alpine:3.9"
runs = ["sh", "-c", "echo $GITHUB_REF | grep '^refs/'"]
}