Passed
Push — develop ( 6ede87...544996 )
by Alexey
14:22 queued 12s
created

Checkout Config

checks:
    php: true

filter:
    paths:
        - "src/*"

build:
    image: default-bionic

    environment:
        variables:
            SYMFONY_REQUIRE: '5.4.*'

        php:
            version: 8.0.15
            ini:
                xdebug.mode: coverage

    nodes:
        analysis:
            tests:
                override:
                    - php-scrutinizer-run

        tests:
            dependencies:
                override:
                    - composer self-update
                    - composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi

            tests:
                override:
                    - command: |
                          php ./vendor/bin/simple-phpunit --configuration phpunit.xml.dist --coverage-clover=coverage.clover
                      on_node: 1
                      coverage:
                          file: coverage.clover
                          format: php-clover

Repository Config

build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
        tests: true
filter:
    excluded_paths:
        - 'tests/*'
        - '*.tpl.php'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true