mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 00:45:43 +00:00
Fixed issue where lint was not run on CI, so we missed to prevent regressions. Signed-off-by: Sorin Sbarnea <ssbarnea@redhat.com>
12 lines
274 B
Makefile
12 lines
274 B
Makefile
export GO111MODULE=off
|
|
|
|
SWAGGER_OUT ?= swagger.yaml
|
|
|
|
validate: ${SWAGGER_OUT}
|
|
swagger validate ${SWAGGER_OUT}
|
|
|
|
.PHONY: ${SWAGGER_OUT}
|
|
${SWAGGER_OUT}:
|
|
# generate doesn't remove file on error
|
|
rm -f ${SWAGGER_OUT}
|
|
swagger generate spec -o ${SWAGGER_OUT} -i tags.yaml -w ./
|