underscore/Makefile
Ruidy fb517f3b04
last function (#17)
* last function

* fix CI

Co-authored-by: Ruidy <rnemausat@newstore.com>
2022-03-21 18:04:30 +01:00

10 lines
No EOL
290 B
Makefile

TEST = "go test ./... -coverpkg=./... -coverprofile coverage.out -covermode=count; go tool cover -func coverage.out; rm coverage.out"
build:
docker build -t underscore:latest .
test: build
docker run --name underscore --rm -i -t underscore sh -c $(TEST)
doc:
cd docs && hugo server -D