Skip to content

Test example negative #79

Test example negative

Test example negative #79

Workflow file for this run

name: Test example negative
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
strategy:
matrix:
target: ["one", "two"]
steps:
- name: Setup
run: echo "Do setup"
- name: Checkout
uses: actions/checkout@v4
- uses: cloudposse/github-action-matrix-outputs-write@v1
with:
matrix-step-name: ${{ github.job }}
matrix-key: ${{ matrix.target }}
test:
runs-on: ubuntu-latest
continue-on-error: true
needs: [setup]
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./
id: current
with:
matrix-step-name: setup
outputs:
result: "${{ steps.current.outputs.result }}"
assert:
runs-on: ubuntu-latest
needs: [test]
steps:
- uses: nick-fields/assert-action@v2
with:
expected: '{}'
actual: "${{ needs.test.outputs.result }}"
teardown:
runs-on: ubuntu-latest
needs: [assert]
if: ${{ always() }}
steps:
- name: Tear down
run: echo "Do Tear down"