diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-01 17:46:56 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-01 17:46:56 +0900 |
| commit | c294e9df6207973306f58186d278e12399f162a3 (patch) | |
| tree | 9f847439eb29c82a77da0dcf7fe426cfa0cbe65b /scripts | |
| parent | 69e88b3b353f1a2ab7a78259b480e8afbd87669c (diff) | |
fix: WS factory, backtester config, CI docker builds, health port docs
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/ci.sh | 7 |
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 ===" |
