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 ba90ecd commit 2bffeb0Copy full SHA for 2bffeb0
.github/workflows/testing.yml
@@ -14,6 +14,8 @@ jobs:
14
services:
15
postgres:
16
image: postgres:9.6
17
+ ports:
18
+ - 5432:5432
19
env:
20
POSTGRES_USER: test
21
POSTGRES_PASSWORD: test
@@ -33,7 +35,7 @@ jobs:
33
35
if: success()
34
36
run: go test -timeout 60s -cover ./... -coverprofile=coverage.txt -covermode=atomic
37
- PG_URI: "postgres://test:test@postgres:5432/test?sslmode=disable"
38
+ PG_URI: "postgres://test:test@localhost:5432/test?sslmode=disable"
39
40
- name: Upload coverage to Codecov
41
uses: codecov/codecov-action@v1
0 commit comments