name: Checks
on:
workflow_call:
env:
CARGO_TERM_COLOR: always
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Build and test Python package
run: |
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install maturin pytest
maturin develop --features python --locked
pytest python/tests -v
- name: maturin build (dry run)
run: |
source .venv/bin/activate
maturin build --features python --locked
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Build MkDocs site
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
mkdocs build --strict
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy --all-targets -- -D warnings
- name: cargo doc
run: RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --locked
- name: cargo test
run: cargo test --locked
- name: cargo build
run: cargo build --locked --all-targets
- name: cargo publish (dry run)
run: cargo publish --dry-run --locked