We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bd6118 commit a20ae1aCopy full SHA for a20ae1a
.github/workflows/clojure.yml
@@ -20,6 +20,8 @@ jobs:
20
- uses: actions/setup-python@v3
21
- name: Install pygments
22
run: pip install pygments
23
+ - name: Docker compose
24
+ run: docker-compose up -d
25
- name: Install dependencies
26
run: lein deps
27
- name: Run tests
docker-compose.yml
@@ -1,16 +1,6 @@
1
version: '3.1'
2
3
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
-
14
es7:
15
image: elasticsearch:7.10.1
16
environment:
@@ -22,6 +12,3 @@ services:
ports:
- "9207:9200"
- "9307:9300"
-volumes:
- pgdata:
0 commit comments