Emit build provenance in v2 compatibility metadata (#31) #102
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: Validate bundles | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Install validation tooling | |
| run: python -m pip install --upgrade -e ".[dev]" | |
| - name: Validate schemas and example manifests | |
| run: python scripts/validate_schemas.py | |
| - name: Validate typed models | |
| run: python scripts/validate_models.py | |
| - name: Run tests | |
| run: pytest | |
| - name: Check formatting | |
| run: ruff format --check . | |
| - name: Lint | |
| run: ruff check . |