gojay

high performance JSON encoder/decoder with stream API for Golang
git clone git://git.lair.cx/gojay
Log | Files | Refs | README | LICENSE

Makefile (189B)


      1 .PHONY: test
      2 test:
      3 	go test -race -run=^Test -v
      4 
      5 .PHONY: cover
      6 cover: 
      7 	go test -coverprofile=coverage.out -covermode=atomic
      8 
      9 .PHONY: coverhtml
     10 coverhtml: 
     11 	go tool cover -html=coverage.out