Passed
Pull Request — master (#43)
by Anatoly
05:45
created

Checkout Config

build:
  image: default-bionic
  nodes:
    analysis:
      environment:
        php: 8.3.16
      tests:
        override:
          - php-scrutinizer-run
    coverage:
      environment:
        php: 8.3.16
      tests:
        override:
          - command: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-clover coverage.xml
            coverage:
              file: coverage.xml
              format: clover
    php83:
      environment:
        php: 8.3.16
      tests:
        override:
          - command: php vendor/bin/phpunit
    php82:
      environment:
        php: 8.2.27
      tests:
        override:
          - command: php vendor/bin/phpunit
    php81:
      environment:
        php: 8.1.31
      tests:
        override:
          - command: php vendor/bin/phpunit
    php80:
      environment:
        php: 8.0.30
      tests:
        override:
          - command: php vendor/bin/phpunit
    php74:
      environment:
        php: 7.4.33
      tests:
        override:
          - command: php vendor/bin/phpunit

Repository Config

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