forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
22 lines
349 B
YAML
22 lines
349 B
YAML
sudo: false
|
|
language: php
|
|
|
|
php:
|
|
- 8.2
|
|
- 8.1
|
|
- 8.0
|
|
- 7.4
|
|
- 7.3
|
|
|
|
install:
|
|
- composer self-update
|
|
- composer install
|
|
|
|
script:
|
|
- XDEBUG_MODE=coverage ./vendor/bin/phpunit -c ./phpunit.xml --coverage-text
|
|
- ./vendor/bin/phpcs --standard=phpcs.xml src -s
|
|
- ./vendor/bin/phpcs --standard=phpcs.xml tests -s
|
|
|
|
matrix:
|
|
fast_finish: true
|