Created
September 21, 2018 09:14
-
-
Save midnite81/20f8973df3342ff40414947b56babe2f to your computer and use it in GitHub Desktop.
Default example of a travis yml file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: php | |
php: | |
- 7.0 | |
- 7.1 | |
before_script: | |
- travis_retry composer self-update | |
- travis_retry composer install --prefer-source --no-interaction --dev | |
script: | |
- mkdir -p build/logs | |
- vendor/bin/phpunit tests --coverage-clover build/logs/clover.xml | |
after_success: | |
- php vendor/bin/coveralls -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment