aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/simplepie/simplepie/.travis.yml
blob: e44352dbb849ece420ae4a5caa0b91f62dcc819b (plain) (blame)
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
language: php

php:
    - 5.6
    - 7.0
    - 7.1
    - 7.2
    - 7.3
    - 7.4
    - nightly

matrix:
  allow_failures:
    # Allow failures for unstable builds.
    - php: "nightly"

before_script:
  - |
    if [[ $TRAVIS_PHP_VERSION == "nightly" ]]; then
      travis_retry composer install --no-interaction --ignore-platform-reqs
    else
      travis_retry composer install --no-interaction
    fi

script:
    - composer test

branches:
  except:
    - one-dot-two