fix(ci): use bash /dev/tcp for postgres readiness check

This commit is contained in:
2026-04-26 00:37:21 +02:00
committed by djalim
parent fdfdd74894
commit c8b808f509
+1 -1
View File
@@ -55,7 +55,7 @@ jobs:
- name: Wait for postgres
run: |
until nc -z localhost 5432; do
until bash -c 'echo > /dev/tcp/localhost/5432' 2>/dev/null; do
echo "Waiting for postgres..."
sleep 2
done