mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-12 16:26:37 +00:00
18 lines
302 B
YAML
18 lines
302 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.2
|
|
- tip
|
|
|
|
install:
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
- ./build.sh setup
|
|
- go get code.google.com/p/go.tools/cmd/cover
|
|
- go get github.com/mattn/goveralls
|
|
|
|
script:
|
|
- ./build.sh test-cov
|
|
|
|
after_success:
|
|
- goveralls -coverprofile=acc.out -service=travis-ci
|