skip integration test in GH actions

This commit is contained in:
Casey Lee
2019-02-07 09:09:19 -08:00
parent 4b61fb3bc3
commit eed58492aa
3 changed files with 16 additions and 1 deletions

9
actions/testdata/env.workflow vendored Normal file
View File

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