mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-05 16:39:50 +00:00
8 lines
107 B
Makefile
8 lines
107 B
Makefile
all:deps test
|
|
|
|
deps:
|
|
go get github.com/stretchr/testify
|
|
go get ./...
|
|
|
|
test:
|
|
go test -cover -short ./...
|