Add templates/record-summary-template.md (Phase 8 insight-layer scaff… #20
This file contains hidden or 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 dataset | |
| on: | |
| pull_request: | |
| paths: | |
| - "data/**" | |
| - "schema/**" | |
| - "scripts/**" | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: pip install jsonschema pyyaml | |
| - name: Validate company JSON files against schema | |
| run: python scripts/validate_schema.py |