.travis.yml 279 B

123456789101112131415
  1. language: go
  2. sudo: false
  3. go_import_path: github.com/LyricTian/captcha
  4. go:
  5. - 1.7
  6. services:
  7. - redis-server
  8. before_install:
  9. - go get -t -v ./...
  10. script:
  11. - go test -race -coverprofile=coverage.txt -covermode=atomic
  12. after_success:
  13. - bash <(curl -s https://codecov.io/bash)