Polish GUI help and user-facing copy #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Core Pipeline Structural Audit | |
| on: | |
| push: | |
| branches: [ main, develop ] | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate-governance-schema: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Codebase Ingestion Checkout | |
| uses: actions/checkout@v4 | |
| - name: Initialize Isolated Python Environment | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Execute Governance Preflight Audit Engine | |
| run: | | |
| python3 scripts/transport_experiment_validate.py | |
| python3 scripts/route_graph_verify.py Xray-config/MITM-DomainFronting.json | |
| python3 scripts/route_rule_linter.py Xray-config/MITM-DomainFronting.json --quiet | |
| python3 scripts/config_src_validate.py --run-steps | |
| python3 scripts/build_config.py --check-runtime-sync --generate-profiles --check-profile-sync | |
| python3 scripts/repository_structure_tests.py |