Skip to content

Commit

Permalink
adding ci build files
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelog committed Jan 5, 2016
1 parent 5dadd06 commit 02cde79
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
engines:
duplication:
enabled: true
config:
languages:
- php
fixme:
enabled: false
phpcodesniffer:
enabled: true
phpmd:
enabled: true

ratings:
paths:
- "**.php"

exclude_paths:
- test/**/*
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'

before_script:
- phpenv config-add test/resources/php.ini

install:
- composer install

script:
- vendor/bin/phing build

after_script:
- travis_retry php vendor/bin/coveralls -v
- vendor/bin/test-reporter

addons:
code_climate:
repo_token: 5d81d5163c7f9b810b46451042cb0069d24c91a5887466ba774bf89a56f0187e

0 comments on commit 02cde79

Please sign in to comment.