# Copyright 2025 Hugo Osvaldo Barrera
#
# SPDX-License-Identifier: ISC
check:
cargo fetch --locked # make sure lockfile is up to date
cargo check --all
cargo fmt --check
cargo clippy --all-targets --all
cargo test --workspace -- --test-threads=1 # includes examples and doctests
cargo doc # fails on broken links
cargo-deny check
clean:
cargo clean