-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
57 lines (57 loc) · 2.01 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
57 lines (57 loc) · 2.01 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
53
54
55
56
57
repos:
- repo: local
hooks:
- id: governance-report-pack-validate
name: governance-report-pack-validate
entry: make governance-validate
language: system
pass_filenames: false
stages: [pre-commit]
- id: governance-report-pack-check
name: governance-report-pack-check
entry: make governance-check
language: system
pass_filenames: false
stages: [pre-push]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-yaml
- id: check-json
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/adrienverge/yamllint
rev: v1.38.0
hooks:
- id: yamllint
args: ["-c", ".yamllint", "docs/schemas/agi_asi_governance_profile_2026_2030.yaml"]
- repo: local
hooks:
- id: governance-validate
name: governance-validate
entry: make governance-validate
language: system
pass_filenames: false
- id: governance-policy-test
name: governance-policy-test
entry: make governance-policy-test
language: system
pass_filenames: false
- id: governance-validator-test
name: governance-validator-test
entry: make governance-validator-test
language: system
pass_filenames: false
- id: governance-evidence-checks
name: governance-evidence-checks
entry: make governance-evidence-manifest && make governance-evidence-verify && make governance-evidence-schema && make governance-report-schema && make governance-check-generated
language: system
pass_filenames: false
- repo: local
hooks:
- id: governance-validation-suite
name: governance validation suite
entry: python3 governance_blueprint/validation/run_validation_suite.py --skip-selftest --quiet
language: system
pass_filenames: false
files: '^(governance_blueprint/|ENTERPRISE_AGI_ASI_GOVERNANCE_BLUEPRINT_2026_2030\.md)'