File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 14
14
test :
15
15
name : Test
16
16
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
+
17
38
steps :
18
39
- name : Set up Go 1.x
19
40
24
45
- name : Check out code into the Go module directory
25
46
26
47
48
+ - name : Run migration
49
+ run : make migrateup
50
+
27
51
- name : Test
28
52
run : make test
You can’t perform that action at this time.
0 commit comments