point the test of failure at the /samples_bad directory #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: push | |
jobs: | |
test: | |
name: Test Invalid | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Test Local Action | |
id: test_failure | |
uses: ./ | |
with: | |
schema-url: https://raw.githubusercontent.com/thomasmost/gha-valjean/main/schema/example.schema.json | |
target-dir: samples_bad | |
continue-on-error: true | |
- name: Check that validation did not succeed | |
if: job.steps.test_failure.outcome != 'failure' | |
run: exit 1 |