mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
29 lines
479 B
YAML
29 lines
479 B
YAML
sudo: false
|
|
|
|
language: php
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- php: 5.5
|
|
- php: 5.6
|
|
env:
|
|
- EXECUTE_CS_CHECK=true
|
|
- php: 7
|
|
- php: hhvm
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
before_install:
|
|
- composer self-update
|
|
|
|
install:
|
|
- travis_retry composer install --no-interaction --ignore-platform-reqs --prefer-source --no-scripts
|
|
|
|
script:
|
|
- composer test
|
|
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then composer cs ; fi
|
|
|
|
notifications:
|
|
email: true
|