Skip to content

docs: update readme with getting started samples #64

docs: update readme with getting started samples

docs: update readme with getting started samples #64

Workflow file for this run

on:
pull_request:
branches:
- main
jobs:
build:
name: unittest
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest tests/unit