GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Setup Failed
Push — master ( 712652...aabf1f )
by Peng
01:48
created

Checkout Config

inherit: true

build:
    cache:
        directories:
            - ~/.composer/
    environment:
        hosts:
            report.awin: '127.0.0.1'
        apache2:
            modules: ['rewrite']
            sites:
                search_ms:
                    web_root: 'web/'
                    host: 'report.awin'
        php:
            version: '7.1'
        elasticsearch: false
        rabbitmq: true
        redis: true
        postgresql: false
        variables:
            APP_ENV: testing
    dependencies:
       before:
           - sudo apt-get install -y --force-yes graphviz
    project_setup:
        before:
            - cd app
            # a workaround for https://github.com/sebastianbergmann/phpunit/issues/1976
            - stty cols 80
            - curl -Ls http://get.sensiolabs.de/deptrac.phar > deptrac && chmod +x deptrac
        override:
            - composer install
        after:
            - php bin/console cache:warmup
    tests:
        override:
            -
                command: './vendor/bin/phpunit --testsuite="unit" --coverage-clover=phpcov-unit.xml --printer PHPUnit_TextUI_ResultPrinter'
                coverage:
                    file: 'var/code-coverage/phpcov-unit.xml'
                    format: 'php-clover'
            -
                command: './vendor/bin/phpunit --testsuite="integration" --coverage-clover=phpcov-integration.xml --printer PHPUnit_TextUI_ResultPrinter'
                coverage:
                    file: 'var/code-coverage/phpcov-integration.xml'
                    format: 'php-clover'
            -
                command: './deptrac analyze depfile.yml --formatter-graphviz-dump-image=/home/scrutinizer/artifacts/dependencies.png'

filter:
    paths: ["app/*", "src/*"]

build_failure_conditions:
    - 'elements.rating(<= B).new.exists'
    - 'issues.label("coding-style").new.exists'
    - 'issues.severity(>= MAJOR).new.exists'

Repository Config

build:
    nodes:
        analysis:
            project_setup:
                override:
                    - 'true'
            tests:
                override:
                    - php-scrutinizer-run
                    -
                        command: phpcs-run
                        use_website_config: true
            environment:
                node:
                    version: 6.0.0
        tests: true
filter:
    excluded_paths:
        - 'app/*'
        - 'tests/*'
        - 'bin/*'
        - 'features/*'
checks:
    php: true
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: true
            other:
                after_type_cast: false