2018-11-30 21:14:28 +01:00

11 lines
160 B
Bash
Executable File

#!/bin/sh
# Exit if any subcommand fails
set -e
# Ensure we're always running from the project root
cd "$(dirname "$0")/.."
bats test/*.bats
shellcheck *.sh