mirror of
https://github.com/flarum/framework.git
synced 2024-11-24 08:34:05 +08:00
9870960afc
This is enough for now since we don't have any unit tests, only code standard checks.
26 lines
430 B
YAML
26 lines
430 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.4
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
fast_finish: true
|
|
|
|
before_script:
|
|
- curl -s http://getcomposer.org/installer | php
|
|
- php composer.phar install
|
|
|
|
script:
|
|
- vendor/bin/phpcs --standard=PSR2 -np src migrations
|
|
|
|
notifications:
|
|
email: false
|
|
webhooks:
|
|
urls:
|
|
- https://webhooks.gitter.im/e/7b9e9827a03b44a16588
|
|
on_success: always
|
|
on_failure: always
|
|
on_start: false
|