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 1620d95 commit 6903341Copy full SHA for 6903341
.github/workflows/validate_pr.yml
@@ -24,7 +24,7 @@ jobs:
24
# Start the validator container
25
docker run --detach --name swagger-validator --publish 8080:8080 swaggerapi/swagger-validator-v2
26
# Wait for the validator to be ready
27
- timeout 30 bash -c 'until curl -f http://localhost:8080/health; do sleep 1; done'
+ timeout 30 bash -c 'until curl -s http://localhost:8080/ >/dev/null 2>&1; do sleep 1; done'
28
29
- name: Validate OpenAPI JSON
30
run: |
0 commit comments