#!/bin/bash

set -e

black --check .
flake8 .
pytest
mypy src/
git ls-files | xargs codespell
