diff options
author | Sorin Sbarnea <ssbarnea@redhat.com> | 2020-01-30 09:34:18 +0000 |
---|---|---|
committer | Sorin Sbarnea <ssbarnea@redhat.com> | 2020-01-30 18:39:56 +0000 |
commit | 51904076196273d8cea89a1c04740322c7cbcf7c (patch) | |
tree | bdf2a210920ba7eebbc4479c69ff66f2c2a73407 /Makefile | |
parent | ee0b328b7265a017e310e1a9cd83418cf61aa491 (diff) | |
download | podman-51904076196273d8cea89a1c04740322c7cbcf7c.tar.gz podman-51904076196273d8cea89a1c04740322c7cbcf7c.tar.bz2 podman-51904076196273d8cea89a1c04740322c7cbcf7c.zip |
Assure validate includes lint
Fixed issue where lint was not run on CI, so we missed to prevent regressions.
Signed-off-by: Sorin Sbarnea <ssbarnea@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -591,7 +591,7 @@ validate.completions: completions/bash/podman if [ -x /bin/zsh ]; then /bin/zsh completions/zsh/_podman; fi .PHONY: validate -validate: gofmt .gitvalidation validate.completions golangci-lint man-page-check +validate: lint gofmt .gitvalidation validate.completions man-page-check .PHONY: build-all-new-commits build-all-new-commits: |