.travis.yml 362 B

123456789101112131415161718
  1. # Travis CI (http://travis-ci.org/) is a continuous integration service for
  2. # open source projects. This file configures it to run unit tests for
  3. # blackfriday.
  4. language: go
  5. go:
  6. - 1.5
  7. - 1.6
  8. - 1.7
  9. install:
  10. - go get -d -t -v ./...
  11. - go build -v ./...
  12. script:
  13. - go test -v ./...
  14. - go test -run=^$ -bench=BenchmarkReference -benchmem