123456789101112131415161718192021222324252627 |
- language: php
- php:
- - 7.1
- - 7.2
- - nightly
- env:
- - COMPOSER_FLAGS="--prefer-lowest"
- - COMPOSER_FLAGS=""
- matrix:
- fast_finish: true
- allow_failures:
- - php: nightly
- before_install:
- - composer self-update
- install:
- - composer update --no-interaction --prefer-dist $COMPOSER_FLAGS
- script:
- - vendor/bin/phpunit
- notifications:
- email: info@endroid.nl
|