9 lines
275 B
Bash
Executable File
9 lines
275 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
flutter pub get
|
|
flutter analyze
|
|
flutter test test/runtime/assistant_execution_target_test.dart
|
|
flutter test test/runtime/runtime_controllers_settings_account_test.dart
|
|
flutter test test/features/assistant/assistant_lower_pane_test.dart
|