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 361e906 commit 5251707Copy full SHA for 5251707
.travis.yml
@@ -8,6 +8,7 @@ matrix:
8
- php: 5.4
9
- php: 5.5
10
- php: 5.6
11
+ env: CHECK_LINKS=true
12
- php: 7
13
- php: hhvm
14
allow_failures:
@@ -17,10 +18,10 @@ before_install:
17
18
- composer selfupdate
19
20
install:
- - sudo apt-get -y install pypy python-sphinx graphviz
21
+ - if [[ "$CHECK_LINKS" == "true" ]]; then sudo apt-get -y install pypy python-sphinx graphviz; fi
22
- travis_retry composer install --no-interaction --prefer-source
23
24
script:
- - cd docs && make linkcheck && cd ..
25
+ - if [[ "$CHECK_LINKS" == "true" ]]; then cd docs && make linkcheck && cd ..; fi
26
- vendor/bin/phpdoc -d src -t docs-api
27
- vendor/bin/phpunit --coverage-text
0 commit comments