ファイル
AutistMask/script/check
clawbot 78a1cb067e
ステータスチェックはすべて成功しました
check / check (push) Successful in 51s
test: commit a verify-build failure-mode battery and run it from make check (closes #227)
2026-08-12 11:05:08 +02:00

16 行
350 B
Bash
実行ファイル

#!/bin/sh
# script/check: run all checks (test, test-verify-build, lint, fmt-check).
# Our own extension to scripts-to-rule-them-all. Must not modify any files.
set -eu
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd -P)"
main() {
"$SCRIPT_DIR/test"
"$SCRIPT_DIR/test-verify-build"
"$SCRIPT_DIR/lint"
"$SCRIPT_DIR/fmt-check"
}
main "$@"