Skip to content

Commit

Permalink
improve wait for docker to be ready
Browse files Browse the repository at this point in the history
  • Loading branch information
lijamie98 committed Nov 26, 2024
1 parent d7eed87 commit 9057cc2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/integration.anchorPlatformTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ jobs:
run:
docker compose -f docker-compose.yaml --profile v2-stable up -d
- name: Wait for docker to be ready
run: sleep 300 && curl http://localhost:8080/.well-known/stellar.toml
uses: mydea/action-wait-for-api@v1
with:
url: "http://localhost:8080/.well-known/stellar.toml"
expected-status: "200"
timeout: "300"
interval: "1"
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
Expand Down

0 comments on commit 9057cc2

Please sign in to comment.