mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-11-10 15:21:01 +00:00
26 lines
844 B
YAML
26 lines
844 B
YAML
# Forces new Travis-CI Infrastructure
|
|
sudo: false
|
|
|
|
language: php
|
|
|
|
env:
|
|
global:
|
|
- secure: DW+TBREK61G9CahBZ+3FoMD8GvsGyZHPNW0lTR0gpKmGvmjkJXWxgiB2ZlnBMIPTq3CTbV0vZa/XNHELlhjHLMUCz1aQJ+07JnNt+nVvhmpUgS1C2Nci8jpYP6hjDadOU+D4b90YclrrQDcYbeCHuoLW2kiqiuB+DXyoCWEJXls=
|
|
- RUN_PHPCS="no"
|
|
- UPDATE_CROWDIN="no"
|
|
|
|
matrix:
|
|
include:
|
|
- php: 5.6
|
|
env: RUN_PHPCS="yes"
|
|
- php: 7.0
|
|
env: UPDATE_CROWDIN="yes"
|
|
|
|
before_script:
|
|
# Make sure all dev dependencies are installed
|
|
- composer install
|
|
|
|
script:
|
|
- if [[ $RUN_PHPCS == "yes" ]]; then vendor/bin/phpcs --report=full --extensions=php -p --standard=build/phpcs/Joomla --ignore=./*tmpl/* administrator/components/com_patchtester; fi
|
|
- if [[ $UPDATE_CROWDIN == "yes" && $TRAVIS_PULL_REQUEST == "false" && $TRAVIS_BRANCH == "master" ]]; then vendor/bin/crowdin --upload; fi
|