Files
faveo/.travis.yml
Manish Verma 1ac0f42a58 Laravel 5.6 updates
Travis config update

Removed HHVM script as Laravel no longer support HHVM after releasing 5.3
2018-08-07 10:17:09 +05:30

27 lines
702 B
YAML

# Required to run your project under the correct environment.
language: php
# Versions of PHP you want your project run with.
php:
- 7.1
- 7.2
# Commands to be run before your environment runs.
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
# Commands you want to run that will verify your build.
script: phpunit
# allow_failures: Allow this build to fail under the specified environments.
# fast_finish: If your build fails do not continue trying to build, just stop.
matrix:
allow_failures:
- php: 5.5
fast_finish: true
# Customize when the notification emails are sent.
notifications:
on_success: never
on_failure: always