13 lines
137 B
Bash
Raw Normal View History

2021-11-08 16:39:17 +00:00
#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/.."
./ci/fmt.sh
./ci/lint.sh
./ci/test.sh "$@"
}
main "$@"