Passed
Push — master ( 122cb7...47d97e )
by Takafumi
01:06
created

Checkout Config

build:
    nodes:
        analysis:
            environment:
                php: 7.2

    environment:
        mysql: 5.7

    project_setup:
        before:
            - mysql -e 'CREATE DATABASE IF NOT EXISTS test_db;'

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

filter:
    paths:
        - src/*

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/*'
checks:
    php: true
coding_style:
    php: {  }