-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
49 lines (39 loc) · 1016 Bytes
/
.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
language: php
sudo: false
notifications:
email:
on_success: never
cache:
directories:
- $HOME/.composer/cache
php:
- 7.1
- 7.2
- 7.3
env:
matrix:
- TESTBENCH=3.0.* PHPUNIT=~4.8.36
- TESTBENCH=3.1.* PHPUNIT=~5.7.21
- TESTBENCH=3.2.* PHPUNIT=~5.7.21
- TESTBENCH=3.3.* PHPUNIT=~5.7.21
- TESTBENCH=3.4.* PHPUNIT=~5.7.21
- TESTBENCH=3.5.* PHPUNIT=~6.0
- TESTBENCH=3.6.* PHPUNIT=^7.0
- TESTBENCH=3.7.* PHPUNIT=^7.0
- TESTBENCH=3.8.* PHPUNIT=^7.5
matrix:
exclude:
- php: 7.2
env: TESTBENCH=3.0.* PHPUNIT=~4.8.36
- php: 7.3
env: TESTBENCH=3.0.* PHPUNIT=~4.8.36
before_install:
- composer self-update --stable --no-interaction
- composer require orchestra/testbench:$TESTBENCH phpunit/phpunit:$PHPUNIT --no-update --no-interaction --dev
install:
- travis_retry composer install --no-suggest --no-interaction
- composer info
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)