Prechádzať zdrojové kódy

Merge pull request #8773 from villfa/ci/lint

Check syntax of PHP files in src
Jordi Boggiano 5 rokov pred
rodič
commit
125b3136d1
1 zmenil súbory, kde vykonal 3 pridanie a 0 odobranie
  1. 3 0
      .travis.yml

+ 3 - 0
.travis.yml

@@ -13,6 +13,8 @@ matrix:
   include:
   include:
     - php: 5.3
     - php: 5.3
       dist: precise
       dist: precise
+      env:
+        - PHP_LINT=1
     - php: 5.4
     - php: 5.4
       dist: trusty
       dist: trusty
     - php: 5.5
     - php: 5.5
@@ -71,6 +73,7 @@ before_script:
   - git config --global user.email travis@example.com
   - git config --global user.email travis@example.com
 
 
 script:
 script:
+  - if [[ "$PHP_LINT" == "1" ]]; then find src/ -type f -name '*.php' -print0 | xargs -0 -L1 -P4 -- php -l -f; fi
   - if [[ $PHPSTAN == "1" ]]; then
   - if [[ $PHPSTAN == "1" ]]; then
       bin/composer require --dev phpstan/phpstan:^0.12 phpunit/phpunit:^7.5 --no-update &&
       bin/composer require --dev phpstan/phpstan:^0.12 phpunit/phpunit:^7.5 --no-update &&
       bin/composer update phpstan/* phpunit/* sebastian/* --with-all-dependencies &&
       bin/composer update phpstan/* phpunit/* sebastian/* --with-all-dependencies &&