Skip to content

Add comprehensive Hypothesis property-based and stateful tests #95

Add comprehensive Hypothesis property-based and stateful tests

Add comprehensive Hypothesis property-based and stateful tests #95

Workflow file for this run

name: Ruff
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --group dev
- name: Run Ruff check
run: uv run ruff check src/ tests/
- name: Run Ruff format check
run: uv run ruff format --check src/ tests/