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.

.travis.yml 475B

1234567891011121314151617181920212223242526
  1. language: go
  2. go:
  3. - '1.9'
  4. - '1.10'
  5. services:
  6. - postgresql
  7. - mysql
  8. addons:
  9. postgresql: "9.4"
  10. before_script:
  11. - mysql -e 'CREATE DATABASE testfixtures_test;'
  12. - psql -c 'CREATE DATABASE testfixtures_test;' -U postgres
  13. install:
  14. - go get -t -tags 'sqlite postgresql mysql' ./...
  15. - curl -s https://raw.githubusercontent.com/go-task/task/master/install-task.sh | sh
  16. - bin/task dl-deps
  17. - cp .sample.env .env
  18. script:
  19. - bin/task lint
  20. - bin/task test-free