Part-DB.Part-DB-server/.travis.yml
Jan Böhmer 9ee5dd9523 Test against PHP 7.4 and PHP 8 snapshot.
Both versions are not finished yet, so we allow failures for them.
2019-09-23 13:01:37 +02:00

24 lines
No EOL
346 B
YAML

language: php
env:
- SYMFONY_DEPRECATIONS_HELPER=disabled # Disable deprecation warnings
# Test for all supported PHP versions
php:
- '7.1'
- '7.2'
- '7.3'
- '7.4snapshot'
- 'nightly'
install:
- composer install
script:
- php bin/phpunit
matrix:
fast_finish: true
allow_failures:
- php: 7.4snapshot
- php: nightly