Skip to content

Remove v3.1-RC JSON Schema (replaced by v3.1-RC2) (#170) #238

Remove v3.1-RC JSON Schema (replaced by v3.1-RC2) (#170)

Remove v3.1-RC JSON Schema (replaced by v3.1-RC2) (#170) #238

Workflow file for this run

name: Validate JSON Schema files
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install jsonschema
run: pip install jsonschema==3.2.0
- run: |
for i in **/*.json; do
echo "Validating $i"
jsonschema $i
done