We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c7953d commit 9628b0cCopy full SHA for 9628b0c
.travis.yml
@@ -12,14 +12,25 @@ matrix:
12
- php: 7.2
13
- php: 7.3
14
- php: 7.4
15
+ - php: "nightly"
16
+
17
+ allow_failures:
18
+ # Allow failures for unstable builds.
19
20
21
cache:
22
directories:
23
- vendor
24
- $HOME/.composer/cache
25
26
install:
- - composer install --no-interaction
27
+ - |
28
+ if [[ $TRAVIS_PHP_VERSION == "nightly" ]]; then
29
+ # Not all dependencies allow for installing on PHP 8 yet, so ignore platform requirements.
30
+ composer install --no-interaction --ignore-platform-reqs
31
+ else
32
+ composer install --no-interaction
33
+ fi
34
35
script:
36
- ./vendor/bin/parallel-lint --exclude vendor .
0 commit comments