Add support for runs-on array form (closes #146) (#155)

* Add support for runs-on array form (closes #146)

* Fixed style issues

Co-authored-by: Casey Lee <[email protected]>
This commit is contained in:
Aidan Steele
2020-03-16 14:58:10 -07:00
committed by GitHub
co-authored by Casey Lee
parent fea9a8afa5
commit 4a4bd36cf6
3 changed files with 60 additions and 14 deletions
+14
View File
@@ -8,3 +8,17 @@ jobs:
- run: env
- run: echo ${GITHUB_ACTOR}
- run: echo ${GITHUB_ACTOR} | grep nektos/act
many:
runs-on: [ubuntu-latest]
steps:
- run: env
- run: echo ${GITHUB_ACTOR}
- run: echo ${GITHUB_ACTOR} | grep nektos/act
selfmany:
runs-on: [self-hosted, ubuntu-latest]
steps:
- run: env
- run: echo ${GITHUB_ACTOR}
- run: echo ${GITHUB_ACTOR} | grep nektos/act