#!/usr/bin/env sh
set -e

echo '
FORMATTING
'
cargo fmt -- --check

echo '
LINTING
'
cargo clippy -- -D warnings

echo '
RUNNING TESTS
'
cargo test
