- Add Gitea Actions workflow; point README to gitea.d-bis.org/Sankofa_Phoenix/SMOA - Expand .gitignore for Spring H2 data, secrets, Kotlin .kotlin/, tooling - Track docs/api/generated ReDoc bundle; refresh api docs README - Android: network/auth/sync, UI shell, tests; backend credentials/integrity APIs - Docs, scripts (generate-api-docs), modules and core updates Made-with: Cursor
7 lines
226 B
Bash
Executable File
7 lines
226 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Run backend tests and Android debug build. Requires JDK 17 and Android SDK.
|
|
set -euo pipefail
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$ROOT"
|
|
exec ./gradlew smoaVerify --no-daemon "$@"
|