diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c69c47..464fb7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,8 @@ jobs: - uses: actions/checkout@v2 - name: Run Tests run: | - composer remove infection/infection + composer remove infection/infection --no-update + composer remove roave/infection-static-analysis-plugin --no-update composer update --prefer-dist --no-interaction --no-progress composer test-units @@ -42,7 +43,7 @@ jobs: - name: Run Tests run: | composer update --prefer-dist --no-interaction --no-progress - vendor/bin/infection --show-mutations --threads=4 --min-msi=90 --min-covered-msi=90 + vendor/bin/roave-infection-static-analysis-plugin --show-mutations --threads=4 --min-msi=90 --min-covered-msi=90 static-analysis: name: Code Format and Static Analysis diff --git a/composer.json b/composer.json index ac9c6ec..cf87b2b 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,8 @@ "phpunit/phpunit": "^9.3.11", "vimeo/psalm": "^4.10.0", "friendsofphp/php-cs-fixer": "^2.13", - "infection/infection": "^0.25.3" + "infection/infection": "^0.25.0", + "roave/infection-static-analysis-plugin": "^1.10.0" }, "autoload": { "psr-4": {"Erusev\\Parsedown\\": "src/"}