Files
github-script/.github/workflows/integration.yml
Jonathan Clem ec171b8961 Use master
2020-02-27 17:53:27 -05:00

17 lines
358 B
YAML

on:
push: {branches: master}
jobs:
integration:
runs-on: ubuntu-latest
steps:
- id: output-set
uses: actions/github-script@master
with:
script: return 'test'
result-encoding: string
- run: |
if [[ "${{steps.output-set.outputs.result}}" != "test" ]]; then
exit 1
fi