Initialize tdc114plus project docs
This commit is contained in:
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
||||
APP_DIR="$ROOT_DIR/app"
|
||||
|
||||
if ! command -v flutter >/dev/null 2>&1; then
|
||||
echo "flutter command not found. Install Flutter SDK before running tests." >&2
|
||||
exit 127
|
||||
fi
|
||||
|
||||
cd "$APP_DIR"
|
||||
flutter analyze
|
||||
flutter test
|
||||
Reference in New Issue
Block a user