17 lines
296 B
YAML
17 lines
296 B
YAML
language: go
|
|
go:
|
|
- 1.10.x
|
|
- 1.11.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
|
|
script:
|
|
- ./configure
|
|
# Run tests
|
|
- make test
|
|
sudo: false
|
|
notifications:
|
|
email: false
|