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 417B

123456789101112131415
  1. dependencies:
  2. override:
  3. # './...' is a relative pattern which means all subdirectories
  4. - go get -t -d -v ./...
  5. - go build -v
  6. database:
  7. override:
  8. - mysql -u root -e "CREATE DATABASE core_test DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci"
  9. test:
  10. override:
  11. # './...' is a relative pattern which means all subdirectories
  12. - go test -v -race
  13. - go test -v -race --dbtype=sqlite3