excelize/.travis.yml

15 lines
236 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-03-28 12:03:54 +08:00
- 1.8
2016-08-30 12:27:35 +08:00
- tip
script:
- go vet ./...
- go test -v -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)