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 80c61a1 commit 26bbfb2Copy full SHA for 26bbfb2
.github/workflows/ci.yml
@@ -80,9 +80,9 @@ jobs:
80
# we can just copy the testing template to ensure the db env variables are set.
81
cp .env.testing.template .env.testing
82
# FIXME: change to `-c release` after testing!!!
83
- swift run -c debug Run serve --port 8080 &
+ swift run -c debug Run serve --port 8080 --host 0.0.0.0 &
84
sleep 2
85
- bash -c '[ "$(curl -sL -w "%{http_code}" -o /dev/null http://localhost:8080/api/version)" == "200" ] || echo Connection failed'
+ bash -c '[ "$(curl -sL -w "%{http_code}" -o /dev/null http://localhost:8080/api/version)" == "200" ] || (echo Connection failed ; exit 1)'
86
87
# test-macos:
88
# name: Test macOS
0 commit comments