File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 15
15
# needed because the postgres container does not provide a healthcheck
16
16
options : --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
17
17
18
+ minio :
19
+ image : minio/minio
20
+ command : server /data
21
+ environment :
22
+ MINIO_ACCESS_KEY : minio
23
+ MINIO_SECRET_KEY : minio123
24
+ TZ : Asia/Kolkata
25
+ volumes :
26
+ - storage-volume:/data
27
+
18
28
runs-on : ubuntu-18.04
19
29
steps :
20
30
- uses : actions/checkout@v1
40
50
source ~/venv/bin/activate
41
51
./runtests.sh
42
52
env :
43
- TEST_DATABASE_URL : postgres://postgres:postgres@localhost:${{ job.services.postgres.ports['5432'] }}/postgres
53
+ TEST_DATABASE_URL : postgres://postgres:postgres@localhost:${{ job.services.postgres.ports['5432'] }}/postgres
54
+ TEST_AWS_ACCESS_KEY_ID : minio
55
+ TEST_AWS_SECRET_ACCESS_KEY : minio123
56
+ TEST_AWS_ENDPOINT_URL : http://minio.localhost/
You can’t perform that action at this time.
0 commit comments