diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-04 15:01:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 15:01:22 +0200 |
commit | 93d63208bbc6b75c6831302ac2c3c7b05cc743ce (patch) | |
tree | 208a8ca4960eb14d04caffb936eb8c21e9045392 /vendor/go.mozilla.org/pkcs7/Makefile | |
parent | 6aed1076a21bc913210efd1f6ad7377dfd85a9f2 (diff) | |
parent | 47c91097f7b93045e9c099b52870c35577f80734 (diff) | |
download | podman-93d63208bbc6b75c6831302ac2c3c7b05cc743ce.tar.gz podman-93d63208bbc6b75c6831302ac2c3c7b05cc743ce.tar.bz2 podman-93d63208bbc6b75c6831302ac2c3c7b05cc743ce.zip |
Merge pull request #7203 from TomSweeneyRedHat/dev/tsweeney/bump_buildah
Bump to Buildah 1.16.0-dev in upstream
Diffstat (limited to 'vendor/go.mozilla.org/pkcs7/Makefile')
-rw-r--r-- | vendor/go.mozilla.org/pkcs7/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/go.mozilla.org/pkcs7/Makefile b/vendor/go.mozilla.org/pkcs7/Makefile new file mode 100644 index 000000000..47c73b868 --- /dev/null +++ b/vendor/go.mozilla.org/pkcs7/Makefile @@ -0,0 +1,20 @@ +all: vet staticcheck test + +test: + go test -covermode=count -coverprofile=coverage.out . + +showcoverage: test + go tool cover -html=coverage.out + +vet: + go vet . + +lint: + golint . + +staticcheck: + staticcheck . + +gettools: + go get -u honnef.co/go/tools/... + go get -u golang.org/x/lint/golint |