We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72c14fc commit f483a04Copy full SHA for f483a04
.github/workflows/golang.yaml
@@ -12,7 +12,7 @@ jobs:
12
image: postgres:16.2
13
# Provide the password for postgres
14
env:
15
- POSTGRES_PASSWORD: postgres
+ POSTGRES_PASSWORD: password
16
POSTGRES_DB: jaeger
17
# Set health checks to wait until postgres has started
18
options: >-
@@ -37,5 +37,5 @@ jobs:
37
run: go build -v ./...
38
- name: Test
39
40
- TEST_DATABASE_URL: postgresql://postgres:password@postgres:5432/jaeger
+ TEST_DATABASE_URL: "postgres://postgres:password@localhost:5432/jaeger"
41
run: go test -test.parallel=1 ./...
0 commit comments