Add basic CI setup #30

Merged
moritz merged 8 commits from ash-setup into main 2025-04-28 14:24:31 +02:00
Showing only changes of commit 2d6a359e83 - 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