Skip to content

Commit

Permalink
fix indenting of continue-on-error param
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmost committed Sep 11, 2024
1 parent 96e253e commit f700ee3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_failure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
with:
schema-url: https://raw.githubusercontent.com/thomasmost/gha-valjean/main/schema/example.schema.json
target-dir: samples_bad
continue-on-error: true
continue-on-error: true
- name: Check that validation did not succeed
if: job.steps.test_failure.outcome != 'failure'
run: exit 1
- name: Succeed if validation failed
if: job.steps.test_failure.outcome != 'success'
if: job.steps.test_failure.outcome == 'failure'
run: exit 0

0 comments on commit f700ee3

Please sign in to comment.