#!/usr/bin/env bash
# Run tests before every commit. Blocks the commit if any test fails.
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck source=run-tests.sh
source "$SCRIPT_DIR/run-tests.sh" commit
