circle.yml 411 B

1234567891011121314
  1. dependencies:
  2. override:
  3. # './...' is a relative pattern which means all subdirectories
  4. - go get -t -d -v ./...
  5. - go build -v
  6. - go get -u github.com/golang/lint/golint
  7. test:
  8. override:
  9. # './...' is a relative pattern which means all subdirectories
  10. - golint ./...
  11. - go test -v -race -coverprofile=coverage.txt -covermode=atomic
  12. post:
  13. - bash <(curl -s https://codecov.io/bash)