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.
 
 
 

19 lines
314 B

  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.2
  7. - 1.3
  8. - 1.4
  9. - 1.5
  10. install:
  11. - go get -d -t -v ./...
  12. - go build -v ./...
  13. script:
  14. - go test -v ./...