Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,17 @@ jobs:
- name: "Install dependencies"
run: "composer install --no-interaction --no-progress"

- name: "Checkout build-infection"
uses: actions/checkout@v5
with:
repository: "phpstan/build-infection"
path: "build-infection"
ref: "1.x"

- name: "Install build-infection dependencies"
working-directory: "build-infection"
run: "composer install --no-interaction --no-progress"

- uses: "actions/download-artifact@v4"
with:
name: "result-cache-${{ matrix.php-version }}"
Expand Down
1 change: 1 addition & 0 deletions infection.json5
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"logs": {
"text": "tmp/infection.log"
},
"bootstrap": "build-infection/vendor/autoload.php",
"mutators": {
"@default": false,
"PHPStan\\Infection\\TrinaryLogicMutator": true
Expand Down
1 change: 0 additions & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ parameters:
- tests/*/data-attributes/*
- tests/*/data-php-*/*
- tests/Rules/Doctrine/ORM/entity-manager.php
- tests/Infection/

reportUnmatchedIgnoredErrors: false

Expand Down
69 changes: 0 additions & 69 deletions tests/Infection/TrinaryLogicMutator.php

This file was deleted.

Loading