Passed
Branch master (67c941)
by Adam
03:07
created

Checkout Config

build:
    environment:
        php: '7.4.0'
    
    tests:
        override:
            -
                command: 'vendor/bin/phpunit --coverage-clover=coverage.xml'
                coverage:
                    file: 'coverage.xml'
                    format: 'clover'


before_commands:
    - "composer install --prefer-source"
    
tools:
    php_code_coverage:
        test_command: vendor/bin/phpunit

checks:
    php:
        code_rating: true
        duplication: true

filter:
    excluded_paths:
        - tests/*