mirror of
https://github.com/containers/podman.git
synced 2025-11-30 18:18:18 +08:00
Mainly to pull in the rekor removal from c/image which removes a bunch of dependencies. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
12 lines
175 B
Makefile
12 lines
175 B
Makefile
default: test
|
|
|
|
test:
|
|
go vet ./...
|
|
go test -v -race ./... -coverprofile=coverage.out
|
|
|
|
updatedeps:
|
|
go get -f -t -u ./...
|
|
go get -f -u ./...
|
|
|
|
.PHONY: default test updatedeps
|