Skip to content

Instantly share code, notes, and snippets.

@dbathily
Last active December 20, 2015 03:28
Show Gist options
  • Save dbathily/6063392 to your computer and use it in GitHub Desktop.
Save dbathily/6063392 to your computer and use it in GitHub Desktop.
travis playframework 2 sample
language: scala # to trigger the build on JVM worker ('language: java' works the same)
env:
- PLAY_VERSION=2.1-RC2 # Latest 2.1.x
before_script:
- wget http://downloads.typesafe.com/play/${PLAY_VERSION}/play-${PLAY_VERSION}.zip
- unzip -q play-${PLAY_VERSION}.zip
script: play-${PLAY_VERSION}/play test
notifications:
# Email notifications are disabled to not annoy anybody.
# See http://about.travis-ci.org/docs/user/build-configuration/ to learn more
# about configuring notification recipients and more.
email: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment