#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")/.."

echo "Linting with hlint..."
./hs hlint app/ src/ test/ || true

echo "Running tests..."
./hs stack test
