forked from ezsystems/EzSystemsShareButtonsBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
26 lines (21 loc) · 660 Bytes
/
.travis.yml
File metadata and controls
26 lines (21 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
language: php
php:
- 7.1
# test only master and stable branches (+ Pull requests)
branches:
only:
- master
- /^\d.\d+$/
install:
# Disable XDebug for better performance
- phpenv config-rm xdebug.ini
# Avoid memory issues on composer install
- echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
# Get latest composer build
- travis_retry composer selfupdate
# Install packages
- travis_retry composer install --prefer-dist --no-interaction
script:
- vendor/bin/php-cs-fixer fix -v --dry-run --diff --show-progress=estimating
notifications:
email: false