mirror of
https://github.com/dg/dibi.git
synced 2025-02-23 02:12:25 +01:00
25 lines
583 B
YAML
25 lines
583 B
YAML
language: php
|
|
php:
|
|
- 5.3.3
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- hhvm
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
script:
|
|
- vendor/bin/tester tests -s -c tests/php-unix.ini
|
|
- php code-checker/src/code-checker.php
|
|
|
|
after_failure:
|
|
# Print *.actual content
|
|
- for i in $(find tests -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done
|
|
|
|
before_script:
|
|
# Install Nette Tester & Code Checker
|
|
- composer install --no-interaction --dev --prefer-source
|
|
- composer create-project nette/code-checker code-checker ~2.3 --no-interaction --prefer-source
|