We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1e9e0f commit e5cf390Copy full SHA for e5cf390
.travis.yml
@@ -1,17 +1,18 @@
1
language: go
2
go:
3
- - 1.5.4
4
- - 1.6.4
5
- - 1.7
+ - 1.5.x
+ - 1.6.x
+ - 1.7.x
6
+ - 1.10.x
7
before_install:
- - go get github.com/mattn/goveralls # code coverage tracking
8
+ # - go get github.com/mattn/goveralls # code coverage tracking
9
- go get -t -v ./... # grab project dependencies (non-vendor)
10
install:
- - #
11
+ # -
12
before_script:
13
- gofmt -d -s . # gofmt code so it's pretty
14
- go vet ./... # some lint-type checking
15
script:
- # - diff -u <(echo -n) <(gofmt -d -s .)
16
# - go test -v -race ./... # run go tests
17
- - $HOME/gopath/bin/goveralls -service=travis-ci # run code coverage
+ # - $HOME/gopath/bin/goveralls -service=travis-ci # run code coverage
18
+ - go build
0 commit comments