iris/.travis.yml

14 lines
244 B
YAML
Raw Normal View History

2016-05-30 16:08:09 +02:00
language: go
go:
2016-07-01 21:20:52 +02:00
- go1.6
- tip
2016-07-02 18:53:36 +02:00
before_install:
- go get github.com/iris-contrib/middleware/basicauth
2016-05-30 16:08:09 +02:00
script:
- go test -v ./test -coverprofile=coverage.txt -covermode=atomic
2016-07-01 21:20:52 +02:00
2016-05-30 16:08:09 +02:00
after_success:
2016-07-01 21:20:52 +02:00
- bash <(curl -s https://codecov.io/bash)