We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88cc06c commit 187af36Copy full SHA for 187af36
.github/workflows/pythonpackage.yml
@@ -187,7 +187,7 @@ jobs:
187
echo "Checking if container is alive..."
188
[ $(curl http://localhost:8081/ui/get_messages -s) == "{}" ] && echo "Success!" || (echo "Failed" && exit 1)
189
echo "Checking if we have a working home page..."
190
- curl http://localhost:8081/home/ -s | grep -q "site-notification-modal" && echo "Success!" || (echo "Failed" && exit 1)
+ $(curl http://localhost:8081/home/ -s | grep -q "site-notification-modal") && echo "Success!" || (echo "Failed" && exit 1)
191
echo "Stopping and removing container..."
192
docker stop ${{ env.DOCKER_CONTAINER_NAME }}
193
Deploy:
0 commit comments