1
0
Fork 0
gilo/Makefile

20 lines
242 B
Makefile
Raw Normal View History

2021-03-30 19:37:02 -04:00
test:
2021-03-30 19:42:49 -04:00
go test ./...
2021-03-30 19:37:02 -04:00
coverage.out:
2021-03-30 19:42:49 -04:00
go test ./... -coverprofile=coverage.out
2021-03-30 19:37:02 -04:00
coverage: coverage.out
go tool cover -html=coverage.out
clean:
rm -f gilo
rm -f coverage.out
2021-04-01 16:19:16 -04:00
format:
go fmt ./...
2021-03-30 19:37:02 -04:00
gilo:
go build
2021-04-01 16:19:16 -04:00
.PHONY: test clean format