mirror of
https://github.com/harness/drone.git
synced 2025-05-11 06:30:06 +08:00
9 lines
107 B
Makefile
9 lines
107 B
Makefile
all:deps test
|
|
|
|
deps:
|
|
go get github.com/stretchr/testify
|
|
go get ./...
|
|
|
|
test:
|
|
go test -cover -short ./...
|