mirror of
https://github.com/vlucas/valitron.git
synced 2025-12-30 23:01:52 +00:00
21 lines
314 B
YAML
21 lines
314 B
YAML
# see http://about.travis-ci.org/docs/user/languages/php/ for more hints
|
|
language: php
|
|
|
|
# list any PHP version you want to test against
|
|
php:
|
|
- 5.3
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- hhvm
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
before_script:
|
|
- composer install
|
|
|
|
# Script to run tests
|
|
script: ./vendor/bin/phpunit
|