php-loremipsum/.travis.yml
Josh Sherman 8d0bd22b1b
Added PHP 7.2 and HHVM
7.2 is out and the README still says HHVM, figure should be testing against it.
2018-01-07 21:02:24 -06:00

29 lines
444 B
YAML

language: php
dist: trusty
sudo: required
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: hhvm
install:
- composer install
before_script:
- mkdir -p build/logs
- cd tests
script:
- phpunit --colors --coverage-clover ../build/logs/clover.xml .
after_success:
- cd ..
- php vendor/bin/coveralls --config .coveralls.yml -v