Skip to content

test: add comprehensive error handling tests with mocked backends #100

test: add comprehensive error handling tests with mocked backends

test: add comprehensive error handling tests with mocked backends #100

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Lint with Ruff
run: uv run ruff check src tests
- name: Type check with Mypy
run: uv run mypy src
- name: Run tests
run: uv run pytest