2017-02-09 22:01:40 +07:00
|
|
|
language: go
|
|
|
|
go:
|
2017-11-25 19:57:29 +00:00
|
|
|
- 1.8.x
|
|
|
|
- 1.9.x
|
2017-02-09 22:01:40 +07:00
|
|
|
- tip
|
2017-05-24 10:02:32 +07:00
|
|
|
addons:
|
|
|
|
apt:
|
2017-12-18 07:11:42 +07:00
|
|
|
chrome: stable
|
2017-05-24 10:02:32 +07:00
|
|
|
sources:
|
2017-05-24 10:03:55 +07:00
|
|
|
- ubuntu-toolchain-r-test
|
2017-05-24 10:02:32 +07:00
|
|
|
packages:
|
|
|
|
- libstdc++6
|
2017-02-09 22:27:15 +07:00
|
|
|
before_install:
|
2017-02-09 22:01:40 +07:00
|
|
|
- go get github.com/mattn/goveralls
|
2017-02-09 22:27:15 +07:00
|
|
|
script:
|
2017-12-18 07:11:42 +07:00
|
|
|
- export CHROMEDP_TEST_RUNNER=google-chrome-stable
|
|
|
|
- export CHROMEDP_DISABLE_GPU=true
|
|
|
|
- go test -v -coverprofile=coverage.out
|
2017-02-09 22:01:40 +07:00
|
|
|
- goveralls -service=travis-ci -coverprofile=coverage.out
|