-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (63 loc) · 2.47 KB
/
runtime-diagnostics.yml
File metadata and controls
66 lines (63 loc) · 2.47 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
58
59
60
61
62
63
64
65
66
name: Runtime Diagnostics
on:
pull_request:
branches: ["main"]
paths:
- "schemas/RetryLoopFingerprint.json"
- "schemas/SecurityVerdictState.json"
- "schemas/NetworkTruthState.json"
- "schemas/BrowserLaunchTransaction.json"
- "schemas/DesktopServiceBrokerState.json"
- "schemas/MaintenanceEpoch.json"
- "schemas/RuntimeRegistryIntegrityRecord.json"
- "schemas/BootSessionPhaseState.json"
- "schemas/DiagnosticStormRecord.json"
- "examples/retry_loop_fingerprint.json"
- "examples/security_verdict_state.json"
- "examples/network_truth_state.json"
- "examples/browser_launch_transaction.json"
- "examples/desktop_service_broker_state.json"
- "examples/maintenance_epoch.json"
- "examples/runtime_registry_integrity_record.json"
- "examples/boot_session_phase_state.json"
- "examples/diagnostic_storm_record.json"
- "tools/validate_runtime_causality_examples.py"
- ".github/workflows/runtime-diagnostics.yml"
push:
branches: ["main", "replay/s100-current"]
paths:
- "schemas/RetryLoopFingerprint.json"
- "schemas/SecurityVerdictState.json"
- "schemas/NetworkTruthState.json"
- "schemas/BrowserLaunchTransaction.json"
- "schemas/DesktopServiceBrokerState.json"
- "schemas/MaintenanceEpoch.json"
- "schemas/RuntimeRegistryIntegrityRecord.json"
- "schemas/BootSessionPhaseState.json"
- "schemas/DiagnosticStormRecord.json"
- "examples/retry_loop_fingerprint.json"
- "examples/security_verdict_state.json"
- "examples/network_truth_state.json"
- "examples/browser_launch_transaction.json"
- "examples/desktop_service_broker_state.json"
- "examples/maintenance_epoch.json"
- "examples/runtime_registry_integrity_record.json"
- "examples/boot_session_phase_state.json"
- "examples/diagnostic_storm_record.json"
- "tools/validate_runtime_causality_examples.py"
- ".github/workflows/runtime-diagnostics.yml"
permissions:
contents: read
jobs:
validate-runtime-diagnostics:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install validator dependencies
run: python -m pip install --upgrade pip jsonschema
- name: Validate runtime diagnostic examples
run: python tools/validate_runtime_causality_examples.py