Add basic CI setup #23

Merged
rafael merged 8 commits from ci-setup into ash-setup 2025-04-24 16:20:37 +02:00
Showing only changes of commit 018268f9be - Show all commits

View file

@ -36,7 +36,7 @@ steps:
# Wait for postgres to become available
- |
for i in {1..20}; do
if pg_isready -h postgres -u postgres; then
if pg_isready -h postgres -U postgres; then
exit 0
else
true