diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-09-11 16:45:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-11 16:45:55 +0200 |
commit | f73c3b868de36454bc8affeb63b4dc6f2c6da351 (patch) | |
tree | 71300d2c3b22cc4cc1aa118e7d03565c8fa627f5 /Makefile | |
parent | 093013b099cd2397fdf3aedc213d182064be5d27 (diff) | |
parent | ba7e863ac32fa0acd4b081eded4c2935405f1eda (diff) | |
download | podman-f73c3b868de36454bc8affeb63b4dc6f2c6da351.tar.gz podman-f73c3b868de36454bc8affeb63b4dc6f2c6da351.tar.bz2 podman-f73c3b868de36454bc8affeb63b4dc6f2c6da351.zip |
Merge pull request #3973 from baude/validateupdate
add lint and manpage check to make validate
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -315,6 +315,9 @@ docs: $(MANPAGES) ## Generate documentation install-podman-remote-docs: docs @(cd docs; ./podman-remote.sh ./remote) +man-page-check: + ./hack/man-page-checker + # When publishing releases include critical build-time details .PHONY: release.txt release.txt: @@ -505,7 +508,7 @@ validate.completions: completions/bash/podman . completions/bash/podman if [ -x /bin/zsh ]; then /bin/zsh completions/zsh/_podman; fi -validate: gofmt .gitvalidation validate.completions +validate: gofmt .gitvalidation validate.completions golangci-lint man-page-check build-all-new-commits: # Validate that all the commits build on top of $(GIT_BASE_BRANCH) |