gilo/Makefile
Timothy Warren 818b8cf6bf
All checks were successful
timw4mail/gilo/pipeline/head This commit looks good
Make it easier to use gofmt
2021-04-01 16:19:16 -04:00

20 lines
242 B
Makefile

test:
go test ./...
coverage.out:
go test ./... -coverprofile=coverage.out
coverage: coverage.out
go tool cover -html=coverage.out
clean:
rm -f gilo
rm -f coverage.out
format:
go fmt ./...
gilo:
go build
.PHONY: test clean format