Skip to content

feat: support parsing and validating pydantic arguments #672

feat: support parsing and validating pydantic arguments

feat: support parsing and validating pydantic arguments #672

Workflow file for this run

# Basic CI setup: Lint with ruff, run tests with pytest
name: Test
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: Run tests
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- run: uv sync --frozen
- run: uv run pytest