summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-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 ==="