Skip to content

Increment PyO3 dependency #49

Increment PyO3 dependency

Increment PyO3 dependency #49

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Update local toolchain
run: |
rustup update
rustup component add clippy
rustup install stable
- name: Toolchain info
run: |
cargo --version --verbose
rustc --version
cargo clippy --version
- name: Lint
run: |
cargo fmt -- --check
cargo clippy -- --deny warnings
- name: Rust Test
run: |
cargo check
cargo test
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Python Tests
run: |
python -m venv env
source env/bin/activate
pip install '.[test]'
pytest python-tests