Skip to content

docs: comprehensive documentation polish for v1.0.0 #19

docs: comprehensive documentation polish for v1.0.0

docs: comprehensive documentation polish for v1.0.0 #19

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 45
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[all]"
- name: Run tests
run: python -m pytest tests/ -q
- name: Run validation suite
run: python -m validation.validate_all
- name: Run literature validation
run: python benchmarks/literature_validation.py
- name: Run real-world chip validation
run: python benchmarks/real_world_validation.py
- name: Run experimental measurement validation
run: python benchmarks/experimental_validation.py
- name: Run chip thermal database validation
run: python benchmarks/chip_thermal_database.py
- name: Run material cross-validation
run: python benchmarks/material_cross_validation.py
- name: Run case study - datacenter
run: python benchmarks/case_study_datacenter.py
- name: Run case study - mobile SoC
run: python benchmarks/case_study_mobile_soc.py
- name: Run production benchmark suite (20 cases, release gates)
run: python benchmarks/production_suite/run_production_suite.py
- name: Verify gold outputs (regression check)
run: python scripts/freeze_gold_outputs.py --verify-only
- name: Run release readiness check
run: python scripts/release_check.py
security:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies and pip-audit
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[all]"
python -m pip install pip-audit
- name: Dependency audit
run: pip-audit