Passed
Pull Request — master (#88)
by Matt
01:18
created

Checkout Config

build:
    nodes:
        my-tests:
            environment:
                php:
                    version: 8.1
            tests:
                override:
                    - phpcs-run
                    -
                        command: 'XDEBUG_MODE=coverage vendor/bin/phpunit'
                        coverage:
                            file: 'build/logs/clover.xml'
                            format: 'clover'
filter:
    excluded_paths:
        - 'tests/*'

Global Config

checks:
    php:
        code_rating: true
        duplication: true
filter:
    excluded_paths:
        - 'tests/*'
build:
    environment:
        php:
            version: 7.1
    tests:
        override:
            - phpcs-run
            -
                command: 'vendor/bin/phpunit'
                coverage:
                    file: 'build/logs/clover.xml'
                    format: 'clover'