Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 380 Bytes

php-ci.md

File metadata and controls

20 lines (15 loc) · 380 Bytes

Configuration

Create a .gitlab-ci.yml file inside your project root directory and copy the below configuration.

stages:
  - lint  

lint:
  stage: lint
  script: 
    - echo "Linting code..."
    - composer install
    - composer run lint
    - echo "Static code analysis..."
    - composer run phan

As of now we are performing linting and static analysis.