mirror of
https://github.com/tuna/tunasync.git
synced 2025-04-21 12:52:45 +00:00
17 lines
255 B
YAML
17 lines
255 B
YAML
language: go
|
|
go:
|
|
- 1.6
|
|
|
|
before_install:
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get -v github.com/mattn/goveralls
|
|
|
|
os:
|
|
- linux
|
|
|
|
script:
|
|
- ./.testandcover.bash
|
|
|
|
after_success:
|
|
- goveralls -coverprofile=profile.cov -service=travis-ci
|