Harden autopilot control-plane execution #7
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install workflow validator dependency | |
| run: python -m pip install --disable-pip-version-check PyYAML==6.0.2 | |
| - name: Validate workflow YAML | |
| run: python tests/validate_workflows.py | |
| - name: Validate control-plane contracts | |
| shell: pwsh | |
| run: ./tests/contract-tests.ps1 |