Passed
Push — master ( 2719fe...d85618 )
by Yuichi
03:41
created

Checkout Config

build:
    environment:
        php:
            version: 7.2.17
            ini:
                'date.timezone': 'Asia/Tokyo'

    dependencies:
        before:
            - composer require phpunit/phpunit:5.*

    tests:
        override:
            -
                command: 'vendor/bin/phpunit --coverage-clover=some-file'
                coverage:
                    file: 'some-file'
                    format: 'clover'

Repository Config

filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            general:
                linefeed_character: return-newline
            around_operators:
                additive: false
                multiplicative: false
                concatenation: true
                negation: true