Skip to content

preserve ndarray precision #45

preserve ndarray precision

preserve ndarray precision #45

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
verify:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --all -- --check
- run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- run: cargo test --workspace --all-targets --all-features
- run: cargo doc --workspace --no-deps --all-features