gojay

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

.travis.yml (332B)


      1 language: go
      2 
      3 go:
      4   - "1.10.x"
      5   - "1.11.x"
      6   - "1.12.x"
      7 
      8 script:
      9   - go get github.com/golang/dep/cmd/dep github.com/stretchr/testify
     10   - dep ensure -v -vendor-only
     11   - go test ./gojay/codegen/test/... -race
     12   - go test -race -coverprofile=coverage.txt -covermode=atomic
     13 
     14 after_success:
     15   - bash <(curl -s https://codecov.io/bash)