-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
made some changes according to reviews
Signed-off-by: Prati28 <[email protected]>
- Loading branch information
Showing
2 changed files
with
30 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,14 @@ jobs: | |
- name: Wait for the services to be ready | ||
run: | | ||
echo "Waiting for the services to be ready..." | ||
sleep 30 # Wait for 30 seconds to ensure the services are up | ||
for i in {1..10}; do | ||
if curl -sSf http://localhost:8080/ga4gh/drs/v1 > /dev/null; then | ||
echo "Service is up!" | ||
break | ||
fi | ||
echo "Waiting for the service to be ready..." | ||
sleep 3 | ||
done | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters