github.com/google/grumpy@v0.0.0-20171122020858-3ec87959189c/.travis.yml (about)

     1  language: go
     2  os:
     3    - linux
     4    - osx
     5  before_script:
     6    - rvm get head || true # https://github.com/travis-ci/travis-ci/issues/6307 
     7    - set -e
     8  # Run gofmt and lint serially to avoid confusing output. Run tests in parallel
     9  # for speed.
    10  script: make gofmt lint && make -j2 test
    11  after_script: set +e