Completed
Pull Request — master (#1)
by Takafumi
12:40 queued 03:11
created

Checkout Config

build:
    nodes:
        php:
            environment:
                php: 7.0

        php71:
            environment:
                php: 7.1

        php72:
            environment:
                php: 7.2

    environment:
        mysql: 5.7

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

filter:
    paths:
        - src/*

tools:
    external_code_coverage: true

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: {  }