Skip to content

Commit

Permalink
adds configs for ci services
Browse files Browse the repository at this point in the history
  • Loading branch information
schmittjoh committed Dec 1, 2012
1 parent f1137df commit 7cc2f01
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .jms.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
filter:
paths: [src/*, tests/*]
excluded_paths: ["tests/*/Fixtures/*"]

default_config:
psr0_compliance: true
checkstyle: true
composer_config_check:
publish_checks: true
level: warning
reflection_fixes: true
use_statement_fixes: true

path_configs:
tests:
paths: [tests/*]
psr0_compliance: false
checkstyle: false
phpunit_checks: true
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: php

php:
- 5.3
- 5.4

before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev

script: phpunit --coverage-clover clover

after_success:
- curl -sL https://bit.ly/artifact-uploader | php

0 comments on commit 7cc2f01

Please sign in to comment.