df6b6b7ce0
Stop assuming that GOPATH is always set, and is a single directory
16 lines
343 B
YAML
16 lines
343 B
YAML
language: go
|
|
go:
|
|
- 1.12.x
|
|
install:
|
|
# Fetch dependencies
|
|
- wget -O dep https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64
|
|
- chmod +x dep
|
|
- mv dep $GOPATH/bin/dep
|
|
- go get github.com/alecthomas/gometalinter
|
|
- gometalinter --install
|
|
script:
|
|
- ./configure && make test
|
|
sudo: false
|
|
notifications:
|
|
email: false
|