add g4 q2 max q3 max q6 max #117
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
| name: Validate Inventory | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Validate README counts | |
| run: python3 docs/scripts/repo_inventory.py validate | |
| - name: Validate generated inventory document | |
| run: | | |
| python3 docs/scripts/repo_inventory.py generate > /tmp/repo-inventory.md | |
| diff -u docs/repo-inventory.md /tmp/repo-inventory.md |