mirror of
https://github.com/mjl-/mox.git
synced 2024-12-29 09:53:47 +03:00
25 lines
372 B
Makefile
25 lines
372 B
Makefile
|
SHELL=/bin/bash -o pipefail
|
||
|
|
||
|
build:
|
||
|
go build ./...
|
||
|
go vet ./...
|
||
|
|
||
|
test:
|
||
|
golint
|
||
|
go test -cover ./...
|
||
|
|
||
|
coverage:
|
||
|
go test -coverprofile=coverage.out -test.outputdir . --
|
||
|
go tool cover -html=coverage.out
|
||
|
|
||
|
fmt:
|
||
|
go fmt ./...
|
||
|
|
||
|
clean:
|
||
|
go clean
|
||
|
|
||
|
# for testing generated typescript
|
||
|
setup:
|
||
|
-mkdir -p node_modules/.bin
|
||
|
npm install typescript@3.0.1 typescript-formatter@7.2.2
|