fix(data/cpu): add msrp_usd: null to 12 mobile SKUs (schema consistency) #13
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-data | |
| # Self-check: every PR runs the bundled lightweight validator. Heavy checks | |
| # (coverage gaps, schema migrations, ingestion smoke tests) live in TechEngine. | |
| on: | |
| pull_request: | |
| paths: | |
| - "data/**" | |
| - "app/validate.py" | |
| push: | |
| branches: [main] | |
| paths: | |
| - "data/**" | |
| - "app/validate.py" | |
| jobs: | |
| self-validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Self-check (bundled validator) | |
| run: python -m app.validate | |
| engine-validate: | |
| needs: self-validate | |
| uses: GetTechAPI/TechEngine/.github/workflows/validate-data.yml@main | |
| with: | |
| data-ref: ${{ github.event.pull_request.head.sha || github.sha }} |