1version: 2 2jobs: 3 build: 4 docker: 5 - image: golang:1.11 6 working_directory: /gqlparser 7 steps: 8 - checkout 9 - run: > 10 go get -u github.com/mattn/goveralls 11 - run: go test -race ./... 12 - run: go test -coverprofile=/tmp/coverage.out -coverpkg=./... ./... 13 - run: goveralls -coverprofile=/tmp/coverage.out -service=circle-ci -repotoken=$COVERALLS_TOKEN 14 - run: go test -count 25 ./... # check for flakey test ordering