Completed
Push — master ( 7f6e55...4f29a1 )
by Frank
11:17
created

Checkout Config

checks:
  php: true

filter:
  excluded_paths:
  - public/whip/*
  - Tests/*
  - Resources/Privat/Scripts/*
  - vendor/*

build:
  project_setup:
    before:
    - mysql -e 'create database t3bot;'
    - cp .env.example .env
    - composer install
    - ./bin/doctrine-migrations --no-interaction --configuration=Build/migrations.xml --db-configuration=Build/migrations-db.php migrations:migrate

  tests:
    override:
    -
      command: './bin/phpunit -c Build/UnitTests.xml --coverage-clover=some-file'
      coverage:
        file: 'some-file'
        format: 'clover'

Repository Config

checks:
    php:
        use_self_instead_of_fqcn: true
        uppercase_constants: true
        simplify_boolean_return: true
        return_doc_comments: true

filter: {  }
coding_style:
    php:
        spaces:
            around_operators:
                concatenation: false
build: true
build:
    environment:
        php:
            version: 7.0