File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 5
5
6
6
jobs :
7
7
test :
8
- name : Test on ${{ matrix.php-versions }} PHP
8
+ name : Test on PHP ${{ matrix.php-versions }}
9
9
runs-on : ubuntu-latest
10
10
11
11
strategy :
12
+ fail-fast : false
12
13
matrix :
13
14
php-versions : ['7.1', '7.2', '7.3', '7.4']
14
15
@@ -19,13 +20,13 @@ jobs:
19
20
uses : shivammathur/setup-php@v2
20
21
with :
21
22
php-version : ${{ matrix.php-versions }}
22
- coverage : xdebug
23
+ coverage : none
23
24
24
25
- name : Install Composer Dependencies
25
26
uses : ramsey/composer-install@v1
26
27
27
28
- name : Run phpunit
28
- run : vendor/bin/phpunit --verbose --coverage-text
29
+ run : vendor/bin/phpunit --verbose
29
30
30
31
roave_bc_check :
31
32
name : Roave BC Check
37
38
uses : docker://nyholm/roave-bc-check-ga
38
39
39
40
phpstan :
41
+ name : PHPStan
40
42
runs-on : ubuntu-latest
41
43
42
44
steps :
45
47
- uses : shivammathur/setup-php@v2
46
48
with :
47
49
php-version : 7.1
50
+ coverage : none
48
51
49
52
- name : Install Composer Dependencies
50
53
uses : ramsey/composer-install@v1
51
54
52
55
- name : Run phpstan
53
56
run : vendor/bin/phpstan analyse --no-progress
57
+
58
+
You can’t perform that action at this time.
0 commit comments