release: prepare v1.3.1 #48
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 SDD | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Verify multi-agent SDD rule files | |
| run: | | |
| test -f sdd.policy.yaml | |
| test -d www | |
| test -f www/README.md | |
| test -f template-context/core-instructions/AGENT_OPERATING_SYSTEM.md | |
| test -f INSTRUCTIONS.md | |
| test -f .cursorrules | |
| test -f .clauderules | |
| test -f CLAUDE.md | |
| test -f GEMINI.md | |
| test -f WINDSURF.md | |
| test -f AIDER.md | |
| test -f ROO.md | |
| test -f .github/copilot-instructions.md | |
| test -f template-context/05-SDD-EXECUTION-GATE.md | |
| test -f template-context/06-AI-RULES-MATRIX.md | |
| test -f scripts/create-www-project.sh | |
| test -f scripts/confirm-user-consent.sh | |
| - name: Make validation script executable | |
| run: chmod +x ./scripts/validate-sdd.sh | |
| - name: Make SDD gate script executable | |
| run: chmod +x ./scripts/check-sdd-gate.sh | |
| - name: Make SDD policy script executable | |
| run: chmod +x ./scripts/check-sdd-policy.sh | |
| - name: Run check-sdd-policy.sh | |
| run: ./scripts/check-sdd-policy.sh . | |
| - name: Run validate-sdd.sh | |
| run: ./scripts/validate-sdd.sh . --strict | |
| - name: Run check-sdd-gate.sh | |
| run: ./scripts/check-sdd-gate.sh . |