mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-30 21:09:52 +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
|