first commit
This commit is contained in:
58
wp-content/plugins/webp-express/vendor/rosell-dk/htaccess-capability-tester/.travis.yml
vendored
Normal file
58
wp-content/plugins/webp-express/vendor/rosell-dk/htaccess-capability-tester/.travis.yml
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
language: php
|
||||
os: linux
|
||||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
include:
|
||||
- name: "PHP 7.4, Xenial"
|
||||
php: 7.4
|
||||
dist: xenial
|
||||
env:
|
||||
- PHPSTAN=1
|
||||
- UPLOADCOVERAGE=0
|
||||
- name: "PHP 7.3, Xenial"
|
||||
php: 7.3
|
||||
dist: xenial
|
||||
env:
|
||||
- PHPSTAN=1
|
||||
- UPLOADCOVERAGE=1
|
||||
- name: "PHP 7.2, Xenial"
|
||||
php: 7.2
|
||||
dist: xenial
|
||||
env:
|
||||
- PHPSTAN=1
|
||||
- UPLOADCOVERAGE=0
|
||||
- name: "PHP 7.1, Xenial"
|
||||
php: 7.1
|
||||
dist: xenial
|
||||
env:
|
||||
- PHPSTAN=1
|
||||
- UPLOADCOVERAGE=0
|
||||
- name: "PHP 7.0, Xenial"
|
||||
php: 7.0
|
||||
dist: xenial
|
||||
env:
|
||||
- PHPSTAN=0
|
||||
- UPLOADCOVERAGE=0
|
||||
- name: "PHP 5.6, Trusty"
|
||||
php: 5.6
|
||||
dist: trusty
|
||||
env:
|
||||
- PHPSTAN=0
|
||||
- UPLOADCOVERAGE=0
|
||||
|
||||
before_script:
|
||||
- (composer self-update; true)
|
||||
- composer install
|
||||
- if [[ $PHPSTAN == 1 ]]; then composer require --dev phpstan/phpstan:"^0.12.37"; fi
|
||||
|
||||
script:
|
||||
- composer test
|
||||
- if [[ $PHPSTAN == 1 ]]; then vendor/bin/phpstan analyse src --level=4; fi
|
||||
|
||||
after_script:
|
||||
- |
|
||||
if [[ $UPLOADCOVERAGE == 1 ]]; then
|
||||
wget https://scrutinizer-ci.com/ocular.phar
|
||||
php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
||||
fi
|
||||
Reference in New Issue
Block a user