We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f21ad5c commit b6f7141Copy full SHA for b6f7141
1 file changed
.github/workflows/im-build.yml
@@ -8,6 +8,21 @@ jobs:
8
build:
9
10
runs-on: ubuntu-latest
11
+
12
+ services:
13
+ # Label used to access the service container
14
+ postgres:
15
+ image: postgres:11
16
+ env:
17
+ POSTGRES_USER: postgres
18
+ POSTGRES_PASSWORD: postgres
19
+ options: >-
20
+ --health-cmd pg_isready
21
+ --health-interval 10s
22
+ --health-timeout 5s
23
+ --health-retries 5
24
+ ports:
25
+ - 5432/tcp
26
env:
27
TESTMODEL_URL: http://localhost:8080/intermine-demo
28
TESTMODEL_PATH: intermine-demo
0 commit comments