From 770a385e51b7ab304c70f58e2b91a53cab87a234 Mon Sep 17 00:00:00 2001 From: Weston Steimel Date: Tue, 14 May 2024 19:11:18 +0100 Subject: [PATCH] ci: fix schema check action Signed-off-by: Weston Steimel --- .github/workflows/validations.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validations.yaml b/.github/workflows/validations.yaml index c9070685..962c0e0b 100644 --- a/.github/workflows/validations.yaml +++ b/.github/workflows/validations.yaml @@ -24,5 +24,5 @@ jobs: run: pip install check-jsonschema - name: "Verify enrichment record json schema" - run: check-jsonschema --schemafile schema/enrichment_record.schema.json data/**/*.json + run: bash -c "check-jsonschema --schemafile schema/enrichment_record.schema.json data/**/*.json" \ No newline at end of file