Skip to content

trying again

trying again #12

Workflow file for this run

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
- name: Check that validation did not succeed
if: failure() && steps.test_failure.outcome == 'failure'
run: exit 0