|
| 1 | +name: Runtime Diagnostics |
| 2 | + |
| 3 | +on: |
| 4 | + pull_request: |
| 5 | + branches: ["main"] |
| 6 | + paths: |
| 7 | + - "schemas/RetryLoopFingerprint.json" |
| 8 | + - "schemas/SecurityVerdictState.json" |
| 9 | + - "schemas/NetworkTruthState.json" |
| 10 | + - "schemas/BrowserLaunchTransaction.json" |
| 11 | + - "schemas/DesktopServiceBrokerState.json" |
| 12 | + - "schemas/MaintenanceEpoch.json" |
| 13 | + - "schemas/RuntimeRegistryIntegrityRecord.json" |
| 14 | + - "schemas/BootSessionPhaseState.json" |
| 15 | + - "schemas/DiagnosticStormRecord.json" |
| 16 | + - "examples/retry_loop_fingerprint.json" |
| 17 | + - "examples/security_verdict_state.json" |
| 18 | + - "examples/network_truth_state.json" |
| 19 | + - "examples/browser_launch_transaction.json" |
| 20 | + - "examples/desktop_service_broker_state.json" |
| 21 | + - "examples/maintenance_epoch.json" |
| 22 | + - "examples/runtime_registry_integrity_record.json" |
| 23 | + - "examples/boot_session_phase_state.json" |
| 24 | + - "examples/diagnostic_storm_record.json" |
| 25 | + - "tools/validate_runtime_causality_examples.py" |
| 26 | + - ".github/workflows/runtime-diagnostics.yml" |
| 27 | + push: |
| 28 | + branches: ["main", "replay/s100-current"] |
| 29 | + paths: |
| 30 | + - "schemas/RetryLoopFingerprint.json" |
| 31 | + - "schemas/SecurityVerdictState.json" |
| 32 | + - "schemas/NetworkTruthState.json" |
| 33 | + - "schemas/BrowserLaunchTransaction.json" |
| 34 | + - "schemas/DesktopServiceBrokerState.json" |
| 35 | + - "schemas/MaintenanceEpoch.json" |
| 36 | + - "schemas/RuntimeRegistryIntegrityRecord.json" |
| 37 | + - "schemas/BootSessionPhaseState.json" |
| 38 | + - "schemas/DiagnosticStormRecord.json" |
| 39 | + - "examples/retry_loop_fingerprint.json" |
| 40 | + - "examples/security_verdict_state.json" |
| 41 | + - "examples/network_truth_state.json" |
| 42 | + - "examples/browser_launch_transaction.json" |
| 43 | + - "examples/desktop_service_broker_state.json" |
| 44 | + - "examples/maintenance_epoch.json" |
| 45 | + - "examples/runtime_registry_integrity_record.json" |
| 46 | + - "examples/boot_session_phase_state.json" |
| 47 | + - "examples/diagnostic_storm_record.json" |
| 48 | + - "tools/validate_runtime_causality_examples.py" |
| 49 | + - ".github/workflows/runtime-diagnostics.yml" |
| 50 | + |
| 51 | +permissions: |
| 52 | + contents: read |
| 53 | + |
| 54 | +jobs: |
| 55 | + validate-runtime-diagnostics: |
| 56 | + runs-on: ubuntu-latest |
| 57 | + steps: |
| 58 | + - uses: actions/checkout@v4 |
| 59 | + - name: Set up Python |
| 60 | + uses: actions/setup-python@v5 |
| 61 | + with: |
| 62 | + python-version: "3.12" |
| 63 | + - name: Install validator dependencies |
| 64 | + run: python -m pip install --upgrade pip jsonschema |
| 65 | + - name: Validate runtime diagnostic examples |
| 66 | + run: python tools/validate_runtime_causality_examples.py |
0 commit comments