Skip to content

Commit a20ae1a

Browse files
committed
Attempt to run docker-compose in github workflows
1 parent 3bd6118 commit a20ae1a

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

.github/workflows/clojure.yml

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
- uses: actions/setup-python@v3
2121
- name: Install pygments
2222
run: pip install pygments
23+
- name: Docker compose
24+
run: docker-compose up -d
2325
- name: Install dependencies
2426
run: lein deps
2527
- name: Run tests

docker-compose.yml

-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
version: '3.1'
22

33
services:
4-
db:
5-
image: postgres:13
6-
ports:
7-
- "5432:5432/tcp"
8-
environment:
9-
POSTGRES_PASSWORD: postgres
10-
volumes:
11-
- pgdata:/var/lib/postgresql/data
12-
restart: always
13-
144
es7:
155
image: elasticsearch:7.10.1
166
environment:
@@ -22,6 +12,3 @@ services:
2212
ports:
2313
- "9207:9200"
2414
- "9307:9300"
25-
26-
volumes:
27-
pgdata:

0 commit comments

Comments
 (0)