mirror of https://github.com/ledisdb/ledisdb.git
11 lines
108 B
Makefile
11 lines
108 B
Makefile
|
all: build
|
||
|
|
||
|
build:
|
||
|
go install ./...
|
||
|
|
||
|
clean:
|
||
|
go clean -i ./...
|
||
|
|
||
|
test:
|
||
|
go test ./...
|
||
|
go test -race ./...
|