Skip to content

Commit

Permalink
test 3
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-burghardt committed May 9, 2024
1 parent 169ee3b commit 078e041
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ jobs:
postgres:
image: postgres:16-alpine
env:
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_DB: wallet-backend
POSTGRES_USER: postgres
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
PGHOST: localhost
options: >-
--health-cmd pg_isready
--health-interval 10s
Expand All @@ -74,8 +76,11 @@ jobs:
ports:
- 5432:5432
env:
PGUSER: postgres
PGPASSWORD: postgres
PGHOST: localhost
PGPORT: 5432
DATABASE_URL: postgres://postgres@localhost:5432/wallet-backend?sslmode=disable
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 078e041

Please sign in to comment.