mirror of
https://github.com/kubescape/kubescape.git
synced 2026-02-14 09:59:54 +00:00
13 lines
147 B
Makefile
13 lines
147 B
Makefile
.PHONY: test all build
|
|
|
|
# default task invoked while running make
|
|
all: build
|
|
|
|
export CGO_ENABLED=0
|
|
|
|
build:
|
|
go build -v .
|
|
|
|
test:
|
|
go test -v ./...
|