#!/usr/bin/env bash

set -e
set -x

cargo clippy --workspace --all-targets --all-features
cargo test --workspace --all-features

exit 0
