mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 14:09:21 +00:00
10 lines
178 B
Makefile
10 lines
178 B
Makefile
#!/usr/bin/make -f
|
|
|
|
build:
|
|
go build -o bin/kubeconform
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
build-static:
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -a -o bin/kubeconform
|