summaryrefslogtreecommitdiffstats
path: root/vendor/zendframework/zendxml/.travis.yml
blob: 877b0650be277c5949f52210ffcc2c81d737cb18 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
sudo: false

language: php

branches:
  except:
    - /^release-.*$/
    - /^ghgfk-.*$/

cache:
  directories:
    - $HOME/.composer/cache
 
matrix:
    allow_failures:
        - php: hhvm
matrix:
  fast_finish: true
  include:
    - php: 5.3
    - php: 5.4
    - php: 5.5
      env:
        - EXECUTE_CS_CHECK=true
    - php: 5.6
    - php: 7
    - php: hhvm 
  allow_failures:
    - php: hhvm

before_install:
  - composer self-update

install:
  - travis_retry composer install --no-interaction --ignore-platform-reqs

script:
  - ./vendor/bin/phpunit -c ./tests
  - if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/phpcs --standard=PSR2 --ignore=tests/Bootstrap.php library tests ; fi
  
notifications:
  irc: "irc.freenode.org#zftalk.dev"
  email: false