Skip to content

Commit

Permalink
move pw setup to later
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamman committed Sep 23, 2024
1 parent 601246b commit 3fe205e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ jobs:
- name: Stand up MinIO
run: |
docker compose up -d minio
docker compose exec -T minio mc alias set minio http://minio:9000 minio123 minio123
- name: Wait for MinIO to be ready
run: |
for i in {1..10}; do
if curl --silent --fail http://localhost:9000/minio/health/live; then
if curl --silent --fail http://minio:9000/minio/health/live; then
break
fi
sleep 3
done
docker compose exec -T minio mc alias set minio http://minio:9000 minio123 minio123
- name: Use Python ${{ matrix.python-version }}
id: setup-python
Expand Down

0 comments on commit 3fe205e

Please sign in to comment.