31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-09-27 20:19:01 +00:00
patchtester/.travis.yml

25 lines
503 B
YAML
Raw Normal View History

# Forces new Travis-CI Infrastructure
sudo: false
2015-06-16 19:26:06 +00:00
language: php
env:
global:
- RUN_PHPCS="no"
2015-06-16 19:26:06 +00:00
matrix:
include:
- php: 5.3
env: RUN_PHPCS="yes"
- php: 5.4
- php: 5.5
- php: 5.6
2015-06-16 19:26:06 +00:00
- php: 7.0
before_script:
# Make sure all dev dependencies are installed
- composer install
2015-06-16 19:26:06 +00:00
script:
2015-11-26 17:48:01 +00:00
- if [ "$RUN_PHPCS" == "yes" ]; then vendor/bin/phpcs --report=full --extensions=php -p --standard=build/phpcs/Joomla --ignore=./*tmpl/* administrator/components/com_patchtester; fi