File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 14
14
- 5432/tcp
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
+ minio :
18
+ image : minio/minio
19
+ env :
20
+ MINIO_ACCESS_KEY : minio
21
+ MINIO_SECRET_KEY : minio123
22
+ ports :
23
+ - 9000/tcp
17
24
18
25
runs-on : ubuntu-18.04
19
26
steps :
40
47
source ~/venv/bin/activate
41
48
./runtests.sh
42
49
env :
43
- TEST_DATABASE_URL : postgres://postgres:postgres@localhost:${{ job.services.postgres.ports['5432'] }}/postgres
50
+ TEST_DATABASE_URL : postgres://postgres:postgres@localhost:${{ job.services.postgres.ports['5432'] }}/postgres
51
+ TEST_AWS_ACCESS_KEY_ID : minio
52
+ TEST_AWS_SECRET_ACCESS_KEY : minio123
53
+ TEST_AWS_ENDPOINT_URL : http://localhost:${{ job.services.minio.ports['9000'] }}/
You can’t perform that action at this time.
0 commit comments