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