docs: add quick reference verification #269
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
| # 2026-03-11_0520 JST | |
| name: NRA-IDE Watchdog | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| check-logic: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.10" | |
| - name: Install Tools | |
| run: pip install matplotlib coverage==7.15.2 | |
| - name: Energy Balance Check | |
| run: python nra-core/implementation/nra_ide_foundation_fixed_JP.py | |
| - name: Run Reference Conformance Tests with Coverage | |
| run: | | |
| python -m coverage run --branch -m unittest discover -v | |
| python -m coverage report -m --include="*NRA-IDE_Architecture_public.py" | |
| - name: Check Internal Links | |
| run: python scripts/check_links.py | |
| - name: Check Path Case Consistency | |
| run: python scripts/check_path_case.py |