Commit b3cd7d2f authored by Michele Carignani's avatar Michele Carignani
Browse files

Validation scripts to use swagger-cli and speccy

parent 33c96bb6
Pipeline #1229 passed with stage
in 0 seconds
#!/bin/bash #!/bin/bash
specfiles=$(ls | egrep -i "^[^.]*API.(json|yaml)") specfiles=$(ls | egrep "^[^.]*.(json|yaml)")
fres=0 fres=0
for i in $specfiles ; do for i in $specfiles ; do
echo "-- Validating OpenAPI file $i..." echo "-- Validating and linting OpenAPI file $i..."
swagger-tools validate $i swagger-cli validate "$i"
res=$? res=$?
fres=$(($fres||$res)) speccy lint "$i"
echo -e "-- Validator returned $res.\n" res2=$?
fres=$(($fres||$res||$res2))
echo "--- Validator returned $res, linter returned $res2."
done done
echo "-- Final validator returns $fres." echo "-- Final validation returns $fres."
exit $fres
exit $fres
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment