mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
328 B
15 lines
328 B
language: go
|
|
go:
|
|
- 1.10.x
|
|
- 1.11.x
|
|
sudo: false
|
|
before_install:
|
|
- go get -u golang.org/x/lint/golint
|
|
- go get github.com/axw/gocov/gocov
|
|
- go get github.com/mattn/goveralls
|
|
script:
|
|
- test -z "`gofmt -l .`"
|
|
- test -z "`golint ./...`"
|
|
- $GOPATH/bin/goveralls -service=travis-ci
|
|
- cd example && ./linux64_build.sh
|