fix(ci): use bash /dev/tcp for postgres readiness check
Tests / Unit tests (pull_request) Successful in 12s
Tests / Integration tests (pull_request) Has been cancelled

This commit is contained in:
2026-04-26 00:37:21 +02:00
parent af2562ef2b
commit f26b2b044f
+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