Skip to content

Commit

Permalink
Wait longer before testing container
Browse files Browse the repository at this point in the history
  • Loading branch information
e-mit committed Jun 26, 2024
1 parent 2e68584 commit b3fabe9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
- name: Release test
run: |
docker run -d -p 8080:8080 --name django_app --rm django_app:latest
sleep 4
sleep 10
page=$(curl http://127.0.0.1:8080)
page=$(curl http://127.0.0.1:8080)
if ! grep -q "FastAPI-AWS-Django-GCP" <<< "$page"; then echo "Page GET failed." && exit 1; fi
- name: Save result
Expand Down

0 comments on commit b3fabe9

Please sign in to comment.