12 lines
208 B
Makefile
12 lines
208 B
Makefile
.PHONY: test test-integration test-unit
|
|
|
|
test: test-unit test-integration
|
|
|
|
test-unit:
|
|
go test ./test/test_unit/...
|
|
|
|
test-integration:
|
|
go test ./test/test_integration/...
|
|
|
|
build:
|
|
go build -o dendrite ./cmd
|