mirror of
https://github.com/silverstripe/silverstripe-behat-extension
synced 2024-10-22 17:05:32 +02:00
1eb1004957
Enforce PHPCS checking
27 lines
439 B
YAML
27 lines
439 B
YAML
language: php
|
|
|
|
sudo: false
|
|
|
|
php:
|
|
- 5.6
|
|
|
|
env:
|
|
matrix:
|
|
- PHPUNIT_TEST=1
|
|
- PHPCS_TEST=1
|
|
|
|
matrix:
|
|
include:
|
|
- php: 5.5
|
|
env: PHPUNIT_TEST=1
|
|
|
|
before_script:
|
|
- composer install --dev --prefer-dist
|
|
- pyrus install pear/PHP_CodeSniffer
|
|
- phpenv rehash
|
|
|
|
|
|
script:
|
|
- "if [ \"$PHPUNIT_TEST\" = \"1\" ]; then vendor/bin/phpunit tests; fi"
|
|
- "if [ \"$PHPCS_TEST\" = \"1\" ]; then phpcs --standard=PSR2 -n src/ tests/; fi"
|