Completed
Push — master ( 1cad1b...fb34f5 )
by Adam
02:59
created

Checkout Config

build:
    environment:
        php: 
            version: '7.3'
            
    project_setup:
        before:
            - mysql -e "CREATE DATABASE IF NOT EXISTS test_db"
            
    tests:
        override:
            -
                command: 'vendor/bin/phpunit --coverage-clover=coverage'
                coverage:
                    file: 'coverage'
                    format: 'clover'

before_commands:
    - "composer install --prefer-source"

checks:
    php:
        code_rating: true
        duplication: true

filter:
    excluded_paths:
        - tests/*