Add service event detail example #35
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: Control Plane Validation | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| validate-control-plane: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install validation dependencies | |
| run: make install-dev | |
| - name: Validate repository contracts | |
| run: make validate |