fix poetry

This commit is contained in:
Vasilije 2024-08-08 17:57:33 +02:00
parent 3d1afe74ed
commit c76652a368

View file

@ -106,7 +106,7 @@ jobs:
- name: Wait for PostgreSQL to be ready
run: |
echo "Waiting for PostgreSQL to be ready..."
until docker exec ${RUNNER_USER_NAME}-postgres pg_isready -U cognee; do
until docker run --rm --network container:${{ services.postgres.id }} postgres:latest pg_isready -U cognee; do
sleep 1
done