summaryrefslogtreecommitdiff
path: root/vendor/github.com/seccomp/libseccomp-golang/Makefile
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-06-09 13:25:12 -0400
committerGitHub <noreply@github.com>2022-06-09 13:25:12 -0400
commite5ef9fd5bc9ba959f134411e548e3820444f484c (patch)
treeeebbaa37c086af932e223cb6f113e2fbcfeaeb35 /vendor/github.com/seccomp/libseccomp-golang/Makefile
parentfd1d0d67fbc1b7c26799370dc153009f9dde50bb (diff)
parent7e9767502575f257776477ed0c01fe10ef42b465 (diff)
downloadpodman-e5ef9fd5bc9ba959f134411e548e3820444f484c.tar.gz
podman-e5ef9fd5bc9ba959f134411e548e3820444f484c.tar.bz2
podman-e5ef9fd5bc9ba959f134411e548e3820444f484c.zip
Merge pull request #14548 from containers/dependabot/go_modules/github.com/opencontainers/runc-1.1.3
Bump github.com/opencontainers/runc from 1.1.2 to 1.1.3
Diffstat (limited to 'vendor/github.com/seccomp/libseccomp-golang/Makefile')
-rw-r--r--vendor/github.com/seccomp/libseccomp-golang/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/vendor/github.com/seccomp/libseccomp-golang/Makefile b/vendor/github.com/seccomp/libseccomp-golang/Makefile
index 38cfa852c..530f5b4ad 100644
--- a/vendor/github.com/seccomp/libseccomp-golang/Makefile
+++ b/vendor/github.com/seccomp/libseccomp-golang/Makefile
@@ -4,7 +4,7 @@
all: check-build
-check: vet test
+check: lint test
check-build:
go build
@@ -16,7 +16,7 @@ fix-syntax:
gofmt -w .
vet:
- go vet -v
+ go vet -v ./...
# Previous bugs have made the tests freeze until the timeout. Golang default
# timeout for tests is 10 minutes, which is too long, considering current tests
@@ -28,5 +28,4 @@ test:
go test -v -timeout $(TEST_TIMEOUT)
lint:
- @$(if $(shell which golint),true,$(error "install golint and include it in your PATH"))
- golint -set_exit_status
+ golangci-lint run .