summaryrefslogtreecommitdiff
path: root/scripts/ci.sh
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 17:46:56 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 17:46:56 +0900
commitc294e9df6207973306f58186d278e12399f162a3 (patch)
tree9f847439eb29c82a77da0dcf7fe426cfa0cbe65b /scripts/ci.sh
parent69e88b3b353f1a2ab7a78259b480e8afbd87669c (diff)
fix: WS factory, backtester config, CI docker builds, health port docs
Diffstat (limited to 'scripts/ci.sh')
-rwxr-xr-xscripts/ci.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/ci.sh b/scripts/ci.sh
index c89dd0d..45296a0 100755
--- a/scripts/ci.sh
+++ b/scripts/ci.sh
@@ -12,4 +12,11 @@ ruff format --check .
echo "=== Running tests ==="
pytest -v
+echo "=== Building Docker images ==="
+if command -v docker &> /dev/null; then
+ docker compose build --quiet 2>&1 || echo "WARNING: Docker build failed (Docker may not be available in CI)"
+else
+ echo "SKIP: Docker not available"
+fi
+
echo "=== All checks passed ==="