#!/bin/bash

set -ex

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