Skip to content

Merge branch 'main' into issue-1161 #1867

Merge branch 'main' into issue-1161

Merge branch 'main' into issue-1161 #1867

Workflow file for this run

name: JSON Schema Check
on:
push:
pull_request:
jobs:
json-schema-check:
runs-on: ubuntu-22.04
container: python:3.11-alpine3.16
steps:
- uses: actions/checkout@v4.1.1
- name: Test
run: |
pip install jsonschema==4.14.0
for f in $(find config/ -name '*.json')
do
echo "Checking $f"
jsonschema -i $f config-schema.json
done