56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
language: php
|
|
dist: bionic
|
|
|
|
php:
|
|
- 7.2
|
|
- 7.3
|
|
- 7.4
|
|
- nightly
|
|
|
|
cache:
|
|
directories:
|
|
- vendor
|
|
- $HOME/.composer/cache
|
|
|
|
before_script:
|
|
# Deactivate xdebug
|
|
- if [[ $TRAVIS_PHP_VERSION != nightly ]]; then phpenv config-rm xdebug.ini; fi
|
|
- composer install --ignore-platform-reqs
|
|
|
|
script:
|
|
- ./vendor/bin/phpunit --color=always --coverage-text
|
|
|
|
allow_failures:
|
|
- php: nightly
|
|
|
|
jobs:
|
|
include:
|
|
|
|
- stage: Code style
|
|
php: 7.4
|
|
script:
|
|
- ./vendor/bin/php-cs-fixer fix --diff --verbose --dry-run
|
|
- ./vendor/bin/phpcs
|
|
|
|
- stage: Coverage
|
|
php: 7.4
|
|
script:
|
|
- pecl install pcov
|
|
- ./vendor/bin/phpunit --coverage-clover coverage-clover.xml
|
|
after_script:
|
|
- wget https://scrutinizer-ci.com/ocular.phar
|
|
- php ocular.phar code-coverage:upload --format=php-clover tests/coverage-clover.xml
|
|
|
|
- stage: API documentations
|
|
if: tag is present
|
|
php: 7.4
|
|
before_script:
|
|
- curl -LO https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.0.0-rc/phpDocumentor.phar
|
|
script:
|
|
- php phpDocumentor.phar --directory src/ --target docs/api
|
|
deploy:
|
|
provider: pages
|
|
skip-cleanup: true
|
|
local-dir: docs/api
|
|
github-token: $GITHUB_TOKEN
|