22 lines
403 B
YAML
22 lines
403 B
YAML
language: go
|
|
go:
|
|
- 1.8.x
|
|
- 1.9.x
|
|
- 1.10.x
|
|
install:
|
|
# Fetch dependencies
|
|
- wget -O dep https://github.com/golang/dep/releases/download/v0.3.2/dep-linux-amd64
|
|
- chmod +x dep
|
|
- ./dep ensure --vendor-only
|
|
script:
|
|
- set -e
|
|
# Lint
|
|
- go get -u github.com/alecthomas/gometalinter
|
|
- gometalinter --install
|
|
- ./lint.sh
|
|
# Run tests
|
|
- ./test.sh
|
|
sudo: false
|
|
notifications:
|
|
email: false
|