Skip to content

Commit

Permalink
Fix issue in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
subhashb committed Aug 9, 2024
1 parent 33d22fa commit 5247de6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ jobs:
poetry config virtualenvs.create false
poetry install --with dev,test --all-extras
- name: Wait for PostgreSQL to be ready
run: |
for i in {1..30}; do
if pg_isready -h localhost -p 5432; then
break
fi
echo "Waiting for PostgreSQL..."
sleep 1
done
- name: Wait for PostgreSQL to be ready
run: |
for i in {1..30}; do
if pg_isready -h localhost -p 5432; then
break
fi
echo "Waiting for PostgreSQL..."
sleep 1
done
- name: Set up database
run: |
Expand Down

0 comments on commit 5247de6

Please sign in to comment.