mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5c4abd107a
- yamllint to ensure it is a valid YAML file - go-swagger validate to ensure it is a valid swagger file Signed-off-by: Ben Firshman <ben@firshman.co.uk>
13 lines
363 B
Bash
Executable file
13 lines
363 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
source "${SCRIPTDIR}/.validate"
|
|
|
|
IFS=$'\n'
|
|
files=( $(validate_diff --diff-filter=ACMR --name-only -- 'api/swagger.yaml' || true) )
|
|
unset IFS
|
|
|
|
if [ ${#files[@]} -gt 0 ]; then
|
|
yamllint -c ${SCRIPTDIR}/.swagger-yamllint api/swagger.yaml
|
|
swagger validate api/swagger.yaml
|
|
fi
|