Skip to content

Commit 47f3768

Browse files
committed
feedback
1 parent 2733d05 commit 47f3768

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ jobs:
169169
php-version: "${{ matrix.php-version }}"
170170
ini-file: development
171171
extensions: pdo, mysqli, pgsql, pdo_mysql, pdo_pgsql, pdo_sqlite, mongodb
172+
tools: infection
172173

173174
- name: "Allow installing on PHP 8.4"
174175
if: matrix.php-version == '8.4'
@@ -179,8 +180,7 @@ jobs:
179180

180181
- name: "Run infection"
181182
if: matrix.php-version == '8.2' || matrix.php-version == '8.3' || matrix.php-version == '8.4'
182-
run: make infection
183-
#run: vendor/bin/infection --git-diff-filter=AM
183+
run: vendor/bin/infection --git-diff-lines --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100
184184

185185
static-analysis:
186186
name: "PHPStan"

Makefile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,3 @@ phpstan:
3232
.PHONY: phpstan-generate-baseline
3333
phpstan-generate-baseline:
3434
php vendor/bin/phpstan analyse -l 8 -c phpstan.neon src tests -b phpstan-baseline.neon
35-
36-
.PHONY: infection
37-
infection:
38-
composer require --dev infection/infection -W --ignore-platform-req=ext-mongodb
39-
vendor/bin/infection --logger-github=false

0 commit comments

Comments
 (0)