Skip to content

docs: add README

docs: add README #1

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
pyproject-file: "pyproject.toml"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --all-extras --dev
# TODO(justin): test coverage
# TODO(justin): ruff linting
- name: Run tests
run: uv run pytest