Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,18 @@ jobs:
# The Python bindings type-check too (extension-module → no link needed for clippy).
- run: cargo clippy --features python -- -D warnings

msrv:
name: MSRV (1.85)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Verify the declared `rust-version` actually builds — edition 2024 + pyo3 0.28 floor.
- uses: dtolnay/rust-toolchain@1.85.0
- run: cargo test
# `check` (not test) for the python feature: extension-module can't link a test binary
# without a Python interpreter, but it must still type-check on the MSRV.
- run: cargo check --features python

linux:
runs-on: ubuntu-latest
strategy:
Expand Down
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Rust
/target

# cargo-fuzz: keep the targets + Cargo.toml, ignore the generated build/corpus/crashes.
/fuzz/target
/fuzz/corpus
/fuzz/artifacts
/fuzz/coverage
/fuzz/Cargo.lock

# Python / maturin
/dist
*.so
Expand Down
Loading
Loading