Skip to content

Commit

Permalink
🧪🐛 Add continue-on-error to actions under test
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Sep 24, 2022
1 parent 78711bc commit 198badc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/self-smoke-test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
- run: echo 'results=${{ toJSON(needs.*.result) }}'
- uses: ./
id: check
continue-on-error: true
with:
jobs: ${{ toJSON(needs) }}
- name: Fail on unexpected outcome (assertion step)
Expand All @@ -69,6 +70,7 @@ jobs:
- run: echo 'results=${{ toJSON(needs.*.result) }}'
- uses: ./
id: check
continue-on-error: true
with:
jobs: ${{ toJSON(needs) }}
- name: Fail on unexpected outcome (assertion step)
Expand All @@ -90,6 +92,7 @@ jobs:
- run: echo 'results=${{ toJSON(needs.*.result) }}'
- uses: ./
id: check
continue-on-error: true
with:
jobs: ${{ toJSON(needs) }}
- name: Fail on unexpected outcome (assertion step)
Expand All @@ -111,6 +114,7 @@ jobs:
- run: echo 'results=${{ toJSON(needs.*.result) }}'
- uses: ./
id: check
continue-on-error: true
with:
allowed-failures: >-
["failing-job", "skipped-job"]
Expand All @@ -134,6 +138,7 @@ jobs:
- run: echo 'results=${{ toJSON(needs.*.result) }}'
- uses: ./
id: check
continue-on-error: true
with:
allowed-failures: failing-job, skipped-job
jobs: ${{ toJSON(needs) }}
Expand All @@ -156,6 +161,7 @@ jobs:
- run: echo 'results=${{ toJSON(needs.*.result) }}'
- uses: ./
id: check
continue-on-error: true
with:
allowed-failures: failing-job
allowed-skips: skipped-job
Expand All @@ -179,6 +185,7 @@ jobs:
- run: echo 'results=${{ toJSON(needs.*.result) }}'
- uses: ./
id: check
continue-on-error: true
with:
allowed-skips: failing-job, skipped-job
jobs: ${{ toJSON(needs) }}
Expand All @@ -202,6 +209,7 @@ jobs:
- run: echo 'results=${{ toJSON(needs.*.result) }}'
- uses: ./
id: check
continue-on-error: true
with:
allowed-failures: failing-job
allowed-skips: skipped-job
Expand Down

0 comments on commit 198badc

Please sign in to comment.