tcell/.travis.yml

16 lines
223 B
YAML
Raw Normal View History

2015-10-06 16:37:37 +08:00
language: go
go:
2018-03-18 15:52:19 +08:00
- 1.10.x
2018-12-19 01:44:59 +08:00
- 1.11.x
- master
2017-08-08 00:48:45 +08:00
before_install:
- go get -t -v ./...
script:
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)