-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bee3c3d
commit edd6ce6
Showing
1 changed file
with
0 additions
and
15 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 |
---|---|---|
|
@@ -20,21 +20,6 @@ jobs: | |
uses: hoverkraft-tech/[email protected] | ||
with: | ||
compose-file: "./docker-compose.yml" | ||
|
||
- name: Wait for services to be healthy | ||
run: | | ||
timeout=30 | ||
echo "Waiting for Docker services to be healthy..." | ||
while ! ( docker-compose ps | grep -q "healthy" ) && [ $timeout -gt 0 ]; do | ||
sleep 1 | ||
timeout=$((timeout-1)) | ||
done | ||
if [ $timeout -eq 0 ]; then | ||
echo "Services did not become healthy in time. Aborting." | ||
docker-compose down | ||
exit 1 | ||
fi | ||
- name: Run Tests | ||
run: | | ||
cd ${{ github.workspace }}/TESTS | ||
|