#!/usr/bin/env bash

# used to avoid problem linking fmod when using rust-lld
export RUSTFLAGS="-Clinker-features=-lld"

cargo clippy --workspace --all-features "$@"
cargo test --workspace --all-features "$@"

exit 0
