.travis.yml 270 B

12345678910111213141516
  1. sudo: false
  2. language: go
  3. go:
  4. - 1.4.1
  5. before_script:
  6. - FIXED=$(go fmt ./... | wc -l); if [ $FIXED -gt 0 ]; then echo "gofmt - $FIXED file(s) not formatted correctly, please run gofmt to fix this." && exit 1; fi
  7. os:
  8. - linux
  9. - osx
  10. notifications:
  11. email: false