File tree Expand file tree Collapse file tree 3 files changed +31
-3
lines changed
Expand file tree Collapse file tree 3 files changed +31
-3
lines changed Original file line number Diff line number Diff line change 5858 vendor/bin/psalm --no-cache
5959 vendor/bin/phpunit --testsuite unit
6060
61- - name : run acceptance tests
61+ - name : Run acceptance tests
6262 run : make acceptance
6363 working-directory : php
64+
65+ - name : Mutation tests - minimum thresholds
66+ run : |
67+ vendor/bin/infection --min-msi=85 --min-covered-msi=88
68+ working-directory : php
69+
70+ - name : Mutation tests - modifications
71+ run : |
72+ git fetch --depth=1 origin $GITHUB_BASE_REF
73+ vendor/bin/infection --git-diff-lines --git-diff-base=origin/$GITHUB_BASE_REF --logger-github --ignore-msi-with-no-mutations
74+ working-directory : php
Original file line number Diff line number Diff line change 2222 "vimeo/psalm" : " ^4.24" ,
2323 "friendsofphp/php-cs-fixer" : " ^3.5" ,
2424 "psalm/plugin-phpunit" : " ^0.18.0" ,
25- "nikic/php-parser" : " ^4.14"
25+ "nikic/php-parser" : " ^4.14" ,
26+ "infection/infection" : " ^0.26.16"
2627 },
2728 "repositories" : [
2829 {
3435 }
3536 }
3637 }
37- ]
38+ ],
39+ "config" : {
40+ "allow-plugins" : {
41+ "infection/extension-installer" : false
42+ }
43+ }
3844}
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : "vendor/infection/infection/resources/schema.json" ,
3+ "source" : {
4+ "directories" : [
5+ "src" ,
6+ ]
7+ } ,
8+ "mutators" : {
9+ "@default" : true
10+ }
11+ }
You can’t perform that action at this time.
0 commit comments