Skip to content

Commit

Permalink
removing health check
Browse files Browse the repository at this point in the history
  • Loading branch information
ericbuckley committed Sep 18, 2024
1 parent 4c37950 commit c5d73f3
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/check_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ jobs:
- 5432:5432
env:
POSTGRES_PASSWORD: pw
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres"]
interval: 10s
timeout: 5s
retries: 5

steps:
- name: Checkout code
Expand All @@ -40,7 +35,7 @@ jobs:
- name: Wait for PostgreSQL to be ready
run: |
until pg_isready -h localhost -U postgres; do sleep 1; done
until pg_isready -h localhost -U postgres -p 5432; do sleep 1; done
- name: Run unit tests
env:
Expand Down

0 comments on commit c5d73f3

Please sign in to comment.