Skip to content

Auto-generate JSON Schema from individual YAML files #144

Auto-generate JSON Schema from individual YAML files

Auto-generate JSON Schema from individual YAML files #144

Workflow file for this run

name: Tests
on:
push:
branches: [main, develop]
pull_request:
jobs:
tests:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install Dependencies
run: uv sync
- name: Run Tests
run: uv run pytest -q tests