From 9ee5dd952327ba83aeadad0d3b65f1793eac95cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 23 Sep 2019 13:01:37 +0200 Subject: [PATCH] Test against PHP 7.4 and PHP 8 snapshot. Both versions are not finished yet, so we allow failures for them. --- .travis.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dca8bdc7..28911e7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,9 +8,17 @@ php: - '7.1' - '7.2' - '7.3' + - '7.4snapshot' + - 'nightly' install: - composer install script: - - php bin/phpunit \ No newline at end of file + - php bin/phpunit + +matrix: + fast_finish: true + allow_failures: + - php: 7.4snapshot + - php: nightly \ No newline at end of file