Skip to content

pyo3 bindings

pyo3 bindings #36

Workflow file for this run

name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Check
run: cargo check
- name: Format
run: cargo fmt --check
- name: clippy
run: cargo clippy
- name: Run tests
run: cargo test -r --verbose