forked from blallo/rss-bridge
22cf562659
This will allow the entire build to fail if one case failed without waiting for the remaining cases to finish their tests
19 lines
No EOL
285 B
YAML
19 lines
No EOL
285 B
YAML
language: php
|
|
php:
|
|
- '5.6'
|
|
- '7.0'
|
|
- hhvm
|
|
- nightly
|
|
|
|
install:
|
|
- pear install PHP_CodeSniffer
|
|
|
|
script:
|
|
- phpenv rehash
|
|
- phpcs . --standard=phpcs.xml --warning-severity=0 --extensions=php -p
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- php: hhvm
|
|
- php: nightly |