Skip to content

Commit 35f48d6

Browse files
committed
add postgres service
1 parent 7248d0f commit 35f48d6

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yml

+24
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,27 @@ jobs:
1414
test:
1515
name: Test
1616
runs-on: ubuntu-latest
17+
# Service containers to run with `container-job`
18+
services:
19+
# Label used to access the service container
20+
postgres:
21+
# Docker Hub image
22+
image: postgres:alpine3.19
23+
# Provide the password for postgres
24+
env:
25+
POSTGRES_USER: root
26+
POSTGRES_PASSWORD: NickWuzh29
27+
POSTGRES_DB: simple_bank
28+
# Set health checks to wait until postgres has started
29+
options: >-
30+
--health-cmd pg_isready
31+
--health-interval 10s
32+
--health-timeout 5s
33+
--health-retries 5
34+
ports:
35+
# Maps tcp port 5432 on service container to the host
36+
- 5432:5432
37+
1738
steps:
1839
- name: Set up Go 1.x
1940
uses: actions/[email protected]
@@ -24,5 +45,8 @@ jobs:
2445
- name: Check out code into the Go module directory
2546
uses: actions/[email protected]
2647

48+
- name: Run migration
49+
run: make migrateup
50+
2751
- name: Test
2852
run: make test

0 commit comments

Comments
 (0)