#!/bin/bash -ex

# install dep
ci/setup.sh

# run checks
ci/black.sh || exit 1
ci/pylint.sh || exit 1
ci/pytest.sh || exit 1
ci/package.sh || exit 1
