update topic in example #368
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 schema and examples | |
on: | |
push: | |
paths: | |
- '**.json' | |
- '**.yaml' | |
pull_request: | |
paths: | |
- '**.json' | |
- '**.yaml' | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-python@v5 | |
name: Setup Python ${{ matrix.python-version }} | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install requirements 📦 | |
run: | | |
python3 -m pip install --upgrade pip | |
pip3 install check-jsonschema pywcmp | |
pywcmp bundle sync | |
- name: Run JSON Schema validation | |
run: | | |
check-jsonschema --check-metaschema schemas/wcmp2-bundled.json | |
for e in examples/*.json; do check-jsonschema --schemafile schemas/wcmp2-bundled.json $e; done | |
- name: Run pywcmp ETS validation | |
run: | | |
for e in examples/*.json; do pywcmp ets validate $e; done |