#!/usr/bin/env bash

set -o errexit
set -o nounset
set -o pipefail

cargo fmt --all -- --check
cargo test

exit 0
