X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.travis.yml;h=0ca1e192c49b0d333623b5e78006d6320fb61964;hb=a8f4f7665c98753cca15140c283d49e0aa4cd0ab;hp=60721f61660556a9b46ec4b5e4820658725d0f02;hpb=6fc95673df5349d682eb6ca6185f894eb711d13a;p=github%2Fwallabag%2Fwallabag.git diff --git a/.travis.yml b/.travis.yml index 60721f61..0ca1e192 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,12 +4,6 @@ services: - rabbitmq - redis -# used for HHVM -addons: - apt: - packages: - - tidy - # cache vendor dirs cache: apt: true @@ -23,6 +17,7 @@ cache: php: - 7.1 - 7.2 + - 7.3 - nightly node_js: @@ -60,7 +55,6 @@ before_script: # xdebug isn't enable for PHP 7.1 - if [[ ! $PHP = hhvm* ]]; then phpenv config-rm xdebug.ini || echo "xdebug not available"; fi - composer self-update --no-progress - - if [[ $DB = pgsql ]]; then psql -c 'create database wallabag_test;' -U postgres; fi; script: - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist @@ -70,7 +64,9 @@ script: - make fixtures - - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then ./bin/simple-phpunit -v ; fi; + - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then SYMFONY_PHPUNIT_VERSION=6.5 ./bin/simple-phpunit -v ; fi; + # PHPStan needs PHPUnit to be installed and cache app to be generated + - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then php bin/phpstan analyse src tests --no-progress --level 1 ; fi; - if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix --verbose --dry-run ; fi; - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi; - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml app/Resources/CraueConfigBundle/translations -v ; fi;