Created
January 19, 2017 17:52
-
-
Save rufhausen/e1dd66e6115ffbf2b1833e83f49f8061 to your computer and use it in GitHub Desktop.
Laravel 5.3 Travis-CI config
This file contains 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: | |
# - '5.6' | |
- '7.0' | |
# - '7.1' | |
sudo: false | |
before_script: | |
- cp .env.ci .env | |
- composer install --dev --prefer-source --no-interaction | |
- php artisan key:generate | |
- php artisan migrate --seed | |
script: | |
- vendor/bin/phpmd app text codesize design naming unusedcode | |
- vendor/bin/phpunit --testdox --coverage-text tests | |
notifications: | |
email: | |
recipients: | |
- [email protected] | |
on_success: always | |
on_failure: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Perfect, thank you! I will try it out now.