We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cae21bd commit 07fdad5Copy full SHA for 07fdad5
.github/workflows/integration-tests.yml
@@ -32,6 +32,8 @@ jobs:
32
application-port: 3010
33
- service-name: 'express-ts'
34
application-port: 3020
35
+ - service-name: 'chi'
36
+ application-port: 3030
37
steps:
38
39
- name: Clone source code
docker/docker-compose.yaml
@@ -55,3 +55,17 @@ services:
55
depends_on:
56
mysql:
57
condition: service_healthy
58
+
59
+ chi:
60
+ build: ../examples/go/chi/mysql
61
+ environment:
62
+ - DB_NAME=test
63
+ - DB_USER=test
64
+ - DB_PASSWORD=test
65
+ - DB_HOST=mysql # defaults to localhost
66
+ - PORT=3030 # defaults to 3000
67
+ ports:
68
+ - '3030:3030'
69
+ depends_on:
70
+ mysql:
71
+ condition: service_healthy
0 commit comments