Validate test cases against a schema #1
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 test data | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: '**' | |
jobs: | |
run_all: | |
name: Validate tests for specific schema version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Validate tests for schema v0 | |
run: | | |
cd test | |
python3 validate.py --schema-dir ./schemas/v0/ |