Skip to content

Update README.md

Update README.md #88

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
unit-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install ripgrep
run: sudo apt-get update && sudo apt-get install -y ripgrep
- name: Create venv and install dependencies
run: uv venv && uv pip install -e '.[test,lint]'
- name: Lint with ruff
run: uv run ruff check src/ tests/
- name: Run unit tests
run: uv run python -m pytest tests/unit/ -x -q