ledisdb/Makefile

11 lines
108 B
Makefile

all: build
build:
go install ./...
clean:
go clean -i ./...
test:
go test ./...
go test -race ./...