Skip to content

Commit

Permalink
Add phpstan to travis
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepDiver1975 committed Oct 21, 2018
1 parent 18e76a3 commit 4eb3d2d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
27 changes: 20 additions & 7 deletions .travis.yml
Expand Up @@ -8,19 +8,32 @@ php:
- 7.2
- 7.3

env:
global:
- RUN_PHPSTAN="FALSE"

matrix:
include:
- name: 'PHPStan'
php: 7.2
env: RUN_PHPSTAN="TRUE"
fast_finish: true
allow_failures:
- php: 5.5

install:
- if [ $RUN_PHPSTAN == "TRUE" ]; then wget https://github.com/phpstan/phpstan/releases/download/0.10.3/phpstan.phar; fi

before_script:
- composer install
- composer install

script:
- ./bin/phpunit --configuration tests/phpunit.xml --coverage-clover=coverage.xml
- if [ $RUN_PHPSTAN == "FALSE" ]; then ./bin/phpunit --configuration tests/phpunit.xml --coverage-clover=coverage.xml; fi
- if [ $RUN_PHPSTAN == "TRUE" ]; then php phpstan.phar analyse -c phpstan.neon lib; fi

after_success:
- bash <(curl -s https://codecov.io/bash)
- bash <(curl -s https://codecov.io/bash)

cache:
directories:
- $HOME/.composer/cache

matrix:
allow_failures:
- php: 5.5
3 changes: 3 additions & 0 deletions phpstan.neon
@@ -0,0 +1,3 @@
parameters:
level: 0
bootstrap: %currentWorkingDirectory%/vendor/autoload.php

0 comments on commit 4eb3d2d

Please sign in to comment.