feat: add test.sh for CI

This commit is contained in:
2026-06-08 20:21:54 -04:00
committed by Sagent
parent 17d8449692
commit 7fc5d28475
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
set -euo pipefail
IMAGE="${1:-}"
if [ -z "$IMAGE" ]; then
echo "Usage: $0 <image>"
exit 1
fi
docker run --rm "$IMAGE" --version