This repository has been archived on 2025-01-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/vendor/drupal-composer/drupal-scaffold/.travis.yml

43 lines
801 B
YAML
Raw Normal View History

2018-11-23 12:29:20 +00:00
language: php
branches:
# Only test the master branch and SemVer tags.
only:
- master
- /^[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+.*$/
matrix:
fast_finish: true
include:
- php: 7.2
env: 'DEPENCENCIES=highest'
- php: 7.2
- php: 7.1
- php: 7.0.11
- php: 5.6
env: 'SCENARIO=phpunit4'
- php: 5.5
env: 'SCENARIO=phpunit4'
- php: 5.5
env: 'SCENARIO=phpunit4 DEPENDENCIES=lowest'
sudo: false
git:
depth: 10000
before_install:
- phpenv config-rm xdebug.ini
- composer --verbose self-update
- composer --version
install:
- 'composer scenario "${SCENARIO}" "${DEPENDENCIES}"'
before_script:
- git config --global user.email "travisci@example.com"
- git config --global user.name "Travis CI Test"
script:
- composer test