Skip to content

Instantly share code, notes, and snippets.

@kittinan
Created February 19, 2015 04:27
Show Gist options
  • Save kittinan/30aca75a7c12776b11b2 to your computer and use it in GitHub Desktop.
Save kittinan/30aca75a7c12776b11b2 to your computer and use it in GitHub Desktop.
simple .travis.yml config
language: php
php:
- 5.5
- 5.4
- 5.3
- hhvm
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install --dev --no-interaction
script:
- phpunit ./tests
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml ./tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment