#!/usr/bin/env bash set -euo pipefail root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" if [ -f "$root/services/core/go.mod" ]; then if command -v go >/dev/null 2>&1; then (cd "$root/services/core" && go test ./...) else echo "skip services/core: go not found" fi fi if [ -f "$root/apps/mobile/pubspec.yaml" ]; then if command -v flutter >/dev/null 2>&1; then (cd "$root/apps/mobile" && flutter test) else echo "skip apps/mobile: flutter not found" fi fi