chore: 置信度评估者模型切换收尾 (README x7 + docs + tests) #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
| # Layer 0 Static Verify | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| static-check: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| lfs: true | |
| - name: Run T0 static verify | |
| shell: pwsh | |
| run: pwsh .opencode/tests/T0-static-verify.ps1 | |
| - name: LFS integrity check (git archive smoke test) | |
| shell: bash | |
| run: | | |
| git lfs fsck 2>&1 | grep -v "should have been a pointer" || true | |
| git archive --format=tar HEAD >/dev/null || { echo "::error::git archive failed: LFS objects missing"; exit 1; } | |
| verify: | |
| runs-on: ubuntu-latest | |
| needs: static-check | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run image anchor verify | |
| shell: pwsh | |
| run: pwsh scripts/verify-images.ps1 | |
| - name: Run T1 consistency check | |
| shell: pwsh | |
| run: pwsh .opencode/tests/T1-readme-consistency.ps1 |