diff options
Diffstat (limited to 'pkg/runner/testdata/shells/custom/push.yml')
-rw-r--r-- | pkg/runner/testdata/shells/custom/push.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pkg/runner/testdata/shells/custom/push.yml b/pkg/runner/testdata/shells/custom/push.yml new file mode 100644 index 0000000..cbc0395 --- /dev/null +++ b/pkg/runner/testdata/shells/custom/push.yml @@ -0,0 +1,14 @@ +on: push +jobs: + check: + runs-on: ubuntu-latest + steps: + # prints version and exits, it's not valid (for github) if {0} is not included + - shell: pwsh -v '. {0}' + run: '' + check-container: + runs-on: ubuntu-latest + container: catthehacker/ubuntu:pwsh-latest + steps: + - shell: pwsh -v '. {0}' + run: '' |