data(cpu): fill process node and L3 cache for 310 Pentium/Celeron CPUs #408
Workflow file for this run
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 }} |