-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (43 loc) · 1.43 KB
/
Copy pathvalidate.yml
File metadata and controls
52 lines (43 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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 .