Skip to content

chore(docs): documentation #80

chore(docs): documentation

chore(docs): documentation #80

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
python-version: '3.13'
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- name: Cache Cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install dependencies
run: |
uv sync --frozen --no-install-project
- name: Build and Install
run: uv run maturin develop
- name: Test Rust
run: uv run cargo test
- name: Test Python
run: uv run pytest tests/python