language: go
sudo: false

go:
  - 1.11.x
  - tip

matrix:
  allow_failures:
    - go: tip

script:
  - go vet ./...
  - go test -v ./...