File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
tests :
11
- name : Unit tests
12
11
runs-on : ubuntu-latest
13
12
14
13
strategy :
15
14
fail-fast : true
16
15
matrix :
17
16
php : [8.1, 8.2]
18
17
19
- name : PHP ${{ matrix.php }}
18
+ name : Unit tests PHP ${{ matrix.php }}
20
19
21
20
steps :
22
21
- name : Checkout
@@ -36,15 +35,14 @@ jobs:
36
35
run : vendor/bin/phpunit --verbose
37
36
38
37
static-analysis :
39
- name : Code analysis with PHPStan
40
38
runs-on : ubuntu-latest
41
39
42
40
strategy :
43
41
fail-fast : true
44
42
matrix :
45
43
php : [8.1, 8.2]
46
44
47
- name : PHP ${{ matrix.php }}
45
+ name : Code analysis with PHPStan PHP ${{ matrix.php }}
48
46
49
47
steps :
50
48
- name : Checkout
@@ -64,15 +62,14 @@ jobs:
64
62
run : vendor/bin/phpstan --xdebug analyze src --level 8
65
63
66
64
mutation-tests :
67
- name : Mutation tests with Infection
68
65
runs-on : ubuntu-latest
69
66
70
67
strategy :
71
68
fail-fast : true
72
69
matrix :
73
70
php : [8.1, 8.2]
74
71
75
- name : PHP ${{ matrix.php }}
72
+ name : Mutation tests with Infection PHP ${{ matrix.php }}
76
73
77
74
steps :
78
75
- name : Checkout
You can’t perform that action at this time.
0 commit comments