chore(deps): bump actions/deploy-pages from 4 to 5 #3
Workflow file for this run
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: Contract (make lint contract subset) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| contract-lint: | |
| name: Contract Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install contract validation dependencies | |
| run: python -m pip install --upgrade pip jsonschema PyYAML | |
| - name: Validate published contract assets (matches make lint contract checks) | |
| run: | | |
| python scripts/validate_schemas.py | |
| python scripts/validate_openapi.py | |
| python scripts/check_contract_drift.py |