mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-05 16:39:50 +00: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 ./...
|