Skip to content

🔧 Update version to 0.5.17 in Cargo.toml, pyproject.toml, and Cargo.l… #10

🔧 Update version to 0.5.17 in Cargo.toml, pyproject.toml, and Cargo.l…

🔧 Update version to 0.5.17 in Cargo.toml, pyproject.toml, and Cargo.l… #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: uv sync --dev
- name: Build
run: uv run maturin develop
- name: Run tests
run: uv run pytest tests/