Skip to content

Updated function descriptions #141

Updated function descriptions

Updated function descriptions #141

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- 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 (Ruff)
run: |
uv run ruff check .
uv run ruff format --check .
- name: Type Check (Mypy)
run: uv run mypy src
- name: Run Tests
run: uv run pytest