#!/usr/bin/env bash

set -xeuo pipefail

cargo fmt --all -- --check
cargo clippy --all-features --all-targets -- -D warnings
cargo test --all

