mirror of
https://github.com/containers/podman.git
synced 2025-09-09 17:42:22 +08:00

Bump Buildah to v1.16.0-dev in the upstream branch of Podman. This will allow us to get a number of new issues into the upstream branch for use. The version of Buildah will need to be bumped to v1.16.0 and then vendored into Podman before we release Podman v2.0 Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
21 lines
285 B
Makefile
21 lines
285 B
Makefile
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
|