#!/bin/sh

# remember to use the `--all` flag to include utilities

# run basic checks
cargo check --workspace

# check formatting
cargo fmt --all -- --check

# run clippy
cargo clippy --all

# test once with default feature setup and once without resolve
cargo test --workspace