-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
39 lines (31 loc) · 1.11 KB
/
Copy path.travis.yml
File metadata and controls
39 lines (31 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: go
go:
- 1.9
- "1.10"
- master
before_install:
- go get -u github.com/golang/dep/cmd/dep # dependency management
- go get -u gopkg.in/alecthomas/gometalinter.v2
- gometalinter.v2 --install
install:
- dep ensure -v
env:
- GOOS=linux GOARCH=amd64
- GOOS=windows GOARCH=amd64
- GOOS=darwin GOARCH=amd64
- GOOS=linux GOARCH=arm
matrix:
# It's ok if our code fails on unstable development versions of Go.
allow_failures:
- go: tip
# Don't wait for tip tests to finish. Mark the test run green if the
# tests pass on the stable versions of Go.
fast_finish: true
before_script:
- MY_VERSION=$(git describe --tags)
- GO_FILES=$(find . -iname '*.go' | grep -v /vendor/) # All the .go files, excluding vendor/
- PKGS=$(go list ./... | grep -v /vendor/) # All the import paths, excluding vendor/
script:
#- test -z $(gofmt -s -l $GO_FILES) # Fail if a .go file hasn't been formatted with gofmt
- go test -v -race $PKGS # Run all the tests with the race detector enabled
- gometalinter.v2 --vendor -D gas -D errcheck -D gocyclo ./...