mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 10:36:43 +00:00
10 lines
No EOL
260 B
Makefile
10 lines
No EOL
260 B
Makefile
TEST = "go test ./... -v -coverpkg=./... -coverprofile cp.out; go tool cover -func cp.out; rm cp.out"
|
|
|
|
build:
|
|
docker build . -t underscore:latest
|
|
|
|
test: build
|
|
docker run --name underscore --rm -i -t underscore bash -c $(TEST)
|
|
|
|
doc:
|
|
cd docs && hugo server -D
|