Skip to content

Commit

Permalink
✨ Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoapaes committed Aug 28, 2024
1 parent e5d3696 commit 3a2d1d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ jobs:
run: |
echo "PHP_FPM_PASSWORD=123456" > .env
docker compose -f docker-compose.ssl.yml up --build -d
sleep 15
sleep 10
docker compose -f docker-compose.ssl.yml ps
docker compose -f docker-compose.ssl.yml logs
- name: Test SSL
run: |
CONTENT=$(curl -s "https://127.0.0.1:444/");
CONTENT=$(curl -s -k "https://localhost:444/");
echo "CHAMADA HTTP: ${CONTENT}";
if [ "${CONTENT}" != "php" ]; then
Expand Down

0 comments on commit 3a2d1d9

Please sign in to comment.