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

66 lines
1.5 KiB
YAML
Raw Normal View History

2013-07-23 00:59:51 +04:00
language: php
2017-11-14 20:19:24 +03:00
dist: trusty
sudo: false
2018-12-05 10:13:55 +03:00
stages:
2018-12-05 12:24:47 +03:00
- Code Format and Static Analysis
2019-02-03 00:09:56 +03:00
- Units
2018-12-05 10:13:55 +03:00
- Test CommonMark (weak)
2018-12-05 11:03:43 +03:00
cache:
directories:
- $HOME/.composer/cache
2018-12-05 10:13:55 +03:00
jobs:
2020-05-05 00:30:27 +03:00
fast_finish: true
allow_failures:
- env: ALLOW_FAILURE
2018-12-05 10:13:55 +03:00
include:
2018-12-05 12:24:47 +03:00
- stage: Code Format and Static Analysis
2020-01-19 21:14:37 +03:00
php: 7.4
install: composer install --prefer-dist --no-interaction --no-progress
2018-12-05 10:13:55 +03:00
script:
- '[ -z "$TRAVIS_TAG" ] || [ "$TRAVIS_TAG" == "$(php -r "require(\"vendor/autoload.php\"); echo Erusev\Parsedown\Parsedown::version;")" ]'
2020-01-26 16:09:19 +03:00
- composer test-static -- --shepherd
2018-12-05 10:13:55 +03:00
- composer test-formatting
2019-01-21 21:21:34 +03:00
- composer test-dead-code
2018-12-05 10:13:55 +03:00
2019-02-03 00:09:56 +03:00
- &MUTATION_AND_UNIT_TEST
stage: Units
2019-02-03 00:09:56 +03:00
php: 7.1
install:
- composer update --prefer-dist --no-interaction --no-progress
script:
- composer test-units
2019-02-11 23:36:55 +03:00
- vendor/bin/infection --show-mutations --threads=4 --min-msi=90 --min-covered-msi=90
2019-09-10 01:37:31 +03:00
- <<: *MUTATION_AND_UNIT_TEST
2019-02-03 00:09:56 +03:00
php: 7.2
- <<: *MUTATION_AND_UNIT_TEST
2019-02-03 00:09:56 +03:00
php: 7.3
2019-09-10 01:37:31 +03:00
- <<: *MUTATION_AND_UNIT_TEST
2020-01-19 21:14:37 +03:00
php: 7.4
2019-09-10 01:37:31 +03:00
2019-07-25 20:07:08 +03:00
- <<: *MUTATION_AND_UNIT_TEST
2019-02-03 00:09:56 +03:00
php: nightly
env: ALLOW_FAILURE
2019-07-25 20:07:08 +03:00
script: composer test-units
2019-02-03 00:09:56 +03:00
- &COMMONMARK_TEST
stage: CommonMark
2019-01-28 23:41:56 +03:00
name: Weak
2020-01-19 21:14:37 +03:00
php: 7.4
env: ALLOW_FAILURE
install: composer install --prefer-dist --no-interaction --no-progress
2018-12-05 10:13:55 +03:00
script:
- composer test-commonmark-weak
2019-01-28 23:41:56 +03:00
2019-02-03 00:09:56 +03:00
- <<: *COMMONMARK_TEST
2019-01-28 23:41:56 +03:00
name: Strict
script:
- composer test-commonmark