Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / lsolesen / pel / .travis.yml
1 language: php
2 sudo: false
3
4 php:
5   - 5.6
6   - 7.0
7   - 7.1
8   - hhvm
9   - nightly
10
11 matrix:
12   fast_finish: true
13   allow_failures:
14     - php: hhvm
15     - php: nightly
16
17 install:
18   - travis_retry composer self-update
19   - travis_retry composer install --no-interaction
20
21 before_script:
22   - mkdir -p build/logs
23
24 script:
25   - ./vendor/bin/phpcs --runtime-set ignore_warnings_on_exit 1 --standard=psr2 src
26   - ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml ./test
27
28 after_script:
29   - travis_retry php vendor/bin/coveralls -v