Skip to content

Test query two

Test query two #81

Workflow file for this run

name: Test query two
on:
# # Uncomment when test added first time to register workflow and comment it back after workflow would be registered
# #
# # Added pull_request to register workflow from the PR.
# # Read more https://stackoverflow.com/questions/63362126/github-actions-how-to-run-a-workflow-created-on-a-non-master-branch-from-the-wo
# pull_request: {}
workflow_dispatch: {}
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Setup
run: echo "Do setup"
test:
runs-on: ubuntu-latest
continue-on-error: true
needs: [setup]
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: ./
id: current
with:
query: .no
config: |
yes:
test: foo
bar: bar
no:
test: bar
bar: foo
outputs:
test: "${{ steps.current.outputs.test }}"
bar: "${{ steps.current.outputs.bar }}"
assert:
runs-on: ubuntu-latest
needs: [test]
steps:
- uses: nick-fields/assert-action@v1
with:
expected: 'bar'
actual: "${{ needs.test.outputs.test }}"
- uses: nick-fields/assert-action@v1
with:
expected: 'foo'
actual: "${{ needs.test.outputs.bar }}"
teardown:
runs-on: ubuntu-latest
needs: [assert]
if: ${{ always() }}
steps:
- name: Tear down
run: echo "Do Tear down"