-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (39 loc) · 1.19 KB
/
Copy pathvalidate.yml
File metadata and controls
49 lines (39 loc) · 1.19 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
name: Validate Skills
on:
pull_request:
paths:
- 'skills-engineering/ios-engineer/**'
push:
branches: [main, feature_*]
paths:
- 'skills-engineering/ios-engineer/**'
concurrency:
group: validate-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
name: Validate ios-engineer
runs-on: ubuntu-latest
defaults:
run:
working-directory: skills-engineering/ios-engineer
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq ripgrep ruby > /dev/null
- name: Validate Rule IDs
run: bash scripts/validate_rule_ids.sh
- name: Validate Scenario Specs
run: bash scripts/validate_scenario_specs.sh
- name: Audit Reference Freshness
run: |
STALE_MONTHS=12 CRITICAL_MONTHS=18 bash scripts/audit_ref_freshness.sh
- name: Validate Usage Ledger
run: bash scripts/validate_usage_ledger.sh
- name: Run full skill evolution validation
run: |
SKIP_SNAPSHOT_CONSISTENCY=1 \
SKIP_BEHAVIOR_VALIDATION=1 \
bash scripts/validate_skill_evolution.sh