docs: add TrueNAS v1.9.6 downstream trial case study #70
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: structural-validation | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install deps | |
| run: pip install pyyaml | |
| - name: Structural validation (version counts, links, frontmatter) | |
| # Structural repository consistency only. This is NOT a product | |
| # quality or release gate: behavioral trials establish product | |
| # behavior, Turnstone provides runtime/governance, and the operator | |
| # approves merge/release/deployment. A non-zero exit fails the check. | |
| run: python3 tools/validate.py --repo . |