excelize/.travis.yml

16 lines
241 B
YAML
Raw Normal View History

2016-08-30 12:27:35 +08:00
language: go
install:
- go get -d -t -v ./... && go build -v ./...
go:
2017-09-26 18:47:18 +08:00
- 1.8.x
- 1.9.x
2016-08-30 12:27:35 +08:00
script:
- go vet ./...
- go test -v -coverprofile=coverage.txt -covermode=atomic
after_success:
2017-09-26 18:47:18 +08:00
- bash <(curl -s https://codecov.io/bash)