Completed
Push — master ( 64d42e...4633a5 )
by Adam
03:21
created

Checkout Config

build:
    tests:
        before:
            - "curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -"
            - "sudo apt-get install -y nodejs"
            - "composer global require phpunit/phpunit"
            - "sudo npm install -g less" # doesnt work without sudo
            - "composer install"
        override:
            -
                command: 'cd tests && ../vendor/bin/phpunit .'
                coverage:
                    file: build/logs/clover.xml
                    format: php-clover

Repository Config

filter:
    excluded_paths:
        - 'tests/*'
checks:
    php: true
coding_style:
    php:
        indentation:
            general:
                use_tabs: true
        spaces:
            around_operators:
                concatenation: true
build: true