Skip to content

Emit build provenance in v2 compatibility metadata (#31) #102

Emit build provenance in v2 compatibility metadata (#31)

Emit build provenance in v2 compatibility metadata (#31) #102

Workflow file for this run

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 .