Skip to content
This repository was archived by the owner on Mar 15, 2026. It is now read-only.

Update README with detailed guide (#3) #28

Update README with detailed guide (#3)

Update README with detailed guide (#3) #28

Workflow file for this run

name: CI testing
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.12"]
env:
PYTHON_VERSION: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: 🐍 Install uv and set Python version
uses: astral-sh/setup-uv@v7.2.0
with:
python-version: ${{ env.PYTHON_VERSION }}
activate-environment: true
- name: 📦 Install package and test dependencies
run: uv pip install -e . --group tests
- name: 🧪 Run tests
run: python -m pytest tests/ -v