SilverSight/.github/workflows/doc-sync.yml
allaun 4490dc28a7 feat(rrc): bare-minimum RRC refactor into SilverSight
- Move canonical FixedPoint to Core/SilverSight/FixedPoint.lean
- Add SilverSightRRC library: RRC logogram gates, receipt bridge, AVM ISA
- Add AVMIsa.Emit as the sole top-level JSON output boundary
- Add rrc-emit-fixture executable and Python I/O shims
- Update AGENTS.md, glossary, project map, and build baseline

Build: 2981 jobs, 0 errors (lake build)
2026-06-21 09:08:48 -05:00

17 lines
546 B
YAML

name: Doc Sync Check
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Check README mentions match file tree
run: python3 .github/scripts/check_doc_sync.py
- name: Glossary lint
run: python3 .github/scripts/glossary_lint.py
- name: Validate CITATION.cff
run: python3 -c "import yaml; yaml.safe_load(open('CITATION.cff'))"