Skip to content

fix(data/cpu): normalize INTEL -> Intel in Core 2 names (ingest casin… #16

fix(data/cpu): normalize INTEL -> Intel in Core 2 names (ingest casin…

fix(data/cpu): normalize INTEL -> Intel in Core 2 names (ingest casin… #16

Workflow file for this run

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 }}