Skip to content

docs: finalize docs after org transfer to GetTechAPI #12

docs: finalize docs after org transfer to GetTechAPI

docs: finalize docs after org transfer to GetTechAPI #12

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