This commit is contained in:
2023-09-26 18:14:36 -06:00
commit fb5a0fc542
443 changed files with 21892 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#!/usr/bin/env bash
set -e
sleep 5
echo ">>>> Tests"
echo ">>> Syntax Check"
if ! test -f "./docker-compose.yml"
then
echo ">> ERROR: No docker-compose.yml in directory"
continue
fi
echo ">> Syntax check"
docker compose convert -q
echo "Passed syntax check"