13 lines
137 B
Bash
13 lines
137 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
main() {
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
./ci/fmt.sh
|
||
|
./ci/lint.sh
|
||
|
./ci/test.sh "$@"
|
||
|
}
|
||
|
|
||
|
main "$@"
|