You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

circle.yml 312B

123456789101112
  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