mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-11 06:29:29 +01:00
19 lines
490 B
YAML
19 lines
490 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.4
|
|
- tip
|
|
|
|
before_install:
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get golang.org/x/tools/cmd/vet
|
|
- go get golang.org/x/tools/cmd/goimports
|
|
- go get github.com/golang/lint/golint
|
|
- go get github.com/mattn/goveralls
|
|
|
|
script:
|
|
- go vet ./...
|
|
# - $HOME/gopath/bin/goveralls -coverprofile=coverage.cov -service=travis-ci
|
|
# - bash <(curl -s https://codecov.io/bash)
|
|
- go test -bench=. -benchmem ./...
|
|
#- sh ./install_all_cmd.sh |