mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
13 lines
180 B
Makefile
13 lines
180 B
Makefile
|
.PHONY: all godmesg test test-deps
|
||
|
|
||
|
all: godmesg
|
||
|
|
||
|
godmesg:
|
||
|
go build -o ./bin/godmesg ./cmd/godmesg
|
||
|
|
||
|
test:
|
||
|
go test -v ./...
|
||
|
|
||
|
test-deps:
|
||
|
go get github.com/stretchr/testify/assert
|