We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc5f88e commit 141d421Copy full SHA for 141d421
.github/workflows/ci.yml
@@ -46,6 +46,9 @@ jobs:
46
47
- name: Run tests
48
run: |
49
+ sleep 10
50
+ docker compose logs minio
51
+ docker compose logs minio-setup
52
cargo test
53
env:
54
AWS_ALLOW_HTTP: "true"
docker-compose.yml
@@ -32,3 +32,7 @@ services:
32
/usr/bin/mc admin user add test-minio test-user test-pass;
33
/usr/bin/mc admin policy attach test-minio readwrite --user test-user;
34
exit 0; "
35
+ healthcheck:
36
+ test: ["CMD", "false"]
37
+ interval: 10s
38
+ timeout: 5s
0 commit comments