jcmuller/picky

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: go

sudo: false

go:
  - 1.9.x
  - 1.10.x

before_install:
  - go get github.com/golang/lint/golint

before_script:
  - go vet ./...
  - golint ./...

script:
  - ./test.sh

after_success:
  - bash <(curl -s https://codecov.io/bash)