Compare commits

..

1 commit

Author SHA1 Message Date
639a478c81
Set up basic CI
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is failing
2025-04-21 14:48:01 +02:00

View file

@ -36,11 +36,7 @@ steps:
# Wait for postgres to become available
- |
for i in {1..20}; do
if pg_isready -h postgres; then
break
else
true
fi
pg_isready -h postgres && break
sleep 2
done
echo "Postgres did not become available, aborting"