Added openAPI for 3.0 (#145) #198
Workflow file for this run
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: 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 |