We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8324ec commit 954e7eeCopy full SHA for 954e7ee
1 file changed
.travis.yml
@@ -1,20 +1,31 @@
1
language: php
2
3
-php:
4
- - "7.2"
5
- - "7.3"
6
- - "7.4"
7
-# - "nightly"
8
-
9
-#allow_failures:
10
+matrix:
+ include:
+ - php: 7.2
+ dist: bionic
+ env: COMPOSER_OPTS=""
+ - php: 7.3
11
+ - php: 7.4
12
13
14
+ - php: nightly
15
16
+ env: COMPOSER_OPTS="--ignore-platform-reqs"
17
+ allow_failures:
18
19
20
21
cache:
22
directories:
23
- $HOME/.composer/cache
24
25
+install:
26
+ - travis_retry composer install $COMPOSER_OPTS
27
+
28
script:
- - composer install --ignore-platform-reqs
29
- vendor/bin/grumphp run
30
- composer test
31
- composer infection
0 commit comments