1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00
psalm/.travis.yml

32 lines
616 B
YAML
Raw Permalink Normal View History

2016-12-07 00:01:49 -05:00
language: php
2016-12-07 00:16:15 -05:00
matrix:
include:
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
env: COVERALLS=true
2016-12-07 00:16:15 -05:00
cache:
directories:
- ./vendor
before_install:
# determine INI file
- export INI=~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
# disable default memory limit
- echo memory_limit = 2G >> $INI
- if [[ $COVERALLS = "" ]]; then phpenv config-rm xdebug.ini; fi
2016-12-07 00:16:15 -05:00
install:
2016-12-23 19:45:20 +00:00
- composer --prefer-source install
script:
- vendor/bin/phpunit
- ./psalm --find-dead-code
- vendor/bin/phpcs
after_success:
2017-12-14 00:48:27 -05:00
- travis_retry php vendor/bin/php-coveralls -v