forked from gonzalezemmanuel/playground
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
23 lines (23 loc) · 786 Bytes
/
.travis.yml
File metadata and controls
23 lines (23 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: php
php:
- "5.4"
- "5.5"
before_script:
- curl -s https://getcomposer.org/installer | php
- php composer.phar install
script:
- php vendor/bin/phpunit -c vendor/playground/faq
- php vendor/bin/phpunit -c vendor/playground/user
- php vendor/bin/phpunit -c vendor/playground/facebook
- php vendor/bin/phpunit -c vendor/playground/cms
- php vendor/bin/phpunit -c vendor/playground/core
- php vendor/bin/phpunit -c vendor/playground/design
- php vendor/bin/phpunit -c vendor/playground/flow
- php vendor/bin/phpunit -c vendor/playground/partnership
- php vendor/bin/phpunit -c vendor/playground/reward
after_script:
- php vendor/bin/coveralls
notifications:
email:
on_success: always
on_failure: always