forked from contributte/translation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
56 lines (44 loc) · 1.3 KB
/
.travis.yml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
before_install:
- phpenv config-rm xdebug.ini || return 0
install:
- travis_retry composer install --no-progress --prefer-dist
script:
- composer run-script tests
after_failure:
- for i in $(find tests -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done
jobs:
include:
- name: Lowest Dependencies
install:
- travis_retry composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable
script:
- composer run-script tests
- name: Quality Assurance
php: 7.2
script:
- composer run-script qa
- name: PHPStan
php: 7.2
script:
- composer run-script phpstan-install
- composer run-script phpstan
- name: Test Coverage
if: branch = master AND type = push
php: 7.2
script:
- composer run-script coverage
after_script:
- wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar
- php php-coveralls.phar --verbose --config tests/.coveralls.yml
sudo: false
cache:
directories:
- $HOME/.composer/cache
notifications:
email: false