Skip to content

Commit

Permalink
Test more PHP versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati committed Mar 30, 2020
1 parent 1a3fc0b commit 556c22d
Showing 1 changed file with 29 additions and 7 deletions.
36 changes: 29 additions & 7 deletions .travis.yml
Expand Up @@ -9,13 +9,6 @@ branches:
env:
- COMPOSER_DISABLE_XDEBUG_WARN=1

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm

before_script:
- sudo apt-get -qq update
Expand All @@ -28,6 +21,35 @@ script:
- mkdir -p build/logs
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml

matrix:
fast_finish: true
allow_failures:
- name: Test with PHP Nightly
include:
- name: Test with PHP 5.3
dist: precise
php: '5.3'
- name: Test with PHP 5.4
dist: trusty
php: '5.4'
- name: Test with PHP 5.5
dist: trusty
php: '5.5'
- name: Test with PHP 5.6
php: '5.6'
- name: Test with PHP 7.0
php: '7.0'
- name: Test with PHP 7.1
php: '7.1'
- name: Test with PHP 7.2
php: '7.2'
- name: Test with PHP 7.3
php: '7.3'
- name: Test with PHP 7.4
php: '7.4'
- name: Test with PHP Nightly
php: nightly

cache:
directories:
- vendor
Expand Down

0 comments on commit 556c22d

Please sign in to comment.