1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

Add travis build stages

This commit is contained in:
Aidan Woods 2018-12-05 08:13:55 +01:00
parent a42848da57
commit 5795a6f0a9
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9

View File

@ -3,18 +3,23 @@ language: php
dist: trusty
sudo: false
stages:
- Code Style and Static Analysis
- test
- Test CommonMark (weak)
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
- hhvm
- hhvm-nightly
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: 7.3
- php: nightly
fast_finish: true
allow_failures:
- php: nightly
@ -23,6 +28,19 @@ install:
- composer install --prefer-dist --no-interaction --no-progress
script:
- vendor/bin/phpunit
- vendor/bin/phpunit test/CommonMarkTestWeak.php || true
- composer test-units
jobs:
include:
- stage: Code Style and Static Analysis
php: 7.2
script:
- '[ -z "$TRAVIS_TAG" ] || [ "$TRAVIS_TAG" == "$(php -r "require(\"vendor/autoload.php\"); echo Erusev\Parsedown\Parsedown::version;")" ]'
- composer test-formatting
- stage: Test CommonMark (weak)
php: 7.2
script:
- composer test-commonmark-weak || true
allow_failures:
- php: 7.2