parsedown/.travis.yml

31 lines
626 B
YAML
Raw Permalink Normal View History

2013-07-23 00:59:51 +04:00
language: php
matrix:
2017-11-14 20:19:24 +03:00
include:
- php: 5.3
dist: precise
- php: 5.4
2019-12-20 03:05:10 +03:00
dist: trusty
2017-11-14 20:19:24 +03:00
- php: 5.5
2019-12-20 03:05:10 +03:00
dist: trusty
2017-11-14 20:19:24 +03:00
- php: 5.6
2019-12-20 03:05:10 +03:00
dist: xenial
2017-11-14 20:19:24 +03:00
- php: 7.0
2019-12-20 03:05:10 +03:00
dist: xenial
2017-11-14 20:19:24 +03:00
- php: 7.1
2019-12-20 03:05:10 +03:00
dist: bionic
2018-04-02 21:51:07 +03:00
- php: 7.2
2019-12-20 03:05:10 +03:00
dist: bionic
2018-10-31 16:48:28 +03:00
- php: 7.3
2019-12-20 03:05:10 +03:00
dist: bionic
- php: 7.4
dist: bionic
install:
- composer install --prefer-dist --no-interaction --no-progress
script:
- vendor/bin/phpunit
- vendor/bin/phpunit test/CommonMarkTestWeak.php || true
- '[ -z "$TRAVIS_TAG" ] || [ "$TRAVIS_TAG" == "$(php -r "require(\"Parsedown.php\"); echo Parsedown::version;")" ]'