We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47f3768 commit d894c55Copy full SHA for d894c55
.github/workflows/build.yml
@@ -180,7 +180,9 @@ jobs:
180
181
- name: "Run infection"
182
if: matrix.php-version == '8.2' || matrix.php-version == '8.3' || matrix.php-version == '8.4'
183
- run: vendor/bin/infection --git-diff-lines --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100
+ run: |
184
+ git fetch --depth=1 origin $GITHUB_BASE_REF
185
+ infection --git-diff-base=origin/$GITHUB_BASE_REF --git-diff-filter=AM --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100
186
187
static-analysis:
188
name: "PHPStan"
0 commit comments