diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bd366bd..6c7d082 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,7 +55,6 @@ jobs: - name: Install Composer dependencies run: composer update -n --prefer-dist ${{ matrix.composer-flags }} - name: Run Tests - if: ${{ matrix.php-versions == 8.0 && matrix.operating-system == 'ubuntu-latest' }} run: vendor/bin/simple-phpunit --coverage-clover coverage.xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 @@ -64,7 +63,7 @@ jobs: env: STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} run: | - composer req infection/infection + composer req infection/infection -W vendor/bin/infection --ignore-msi-with-no-mutations --min-covered-msi=100 --min-msi=100 -s -j4 - name: Run phpstan if: ${{ matrix.php-versions == 8.0 && matrix.operating-system == 'ubuntu-latest' }}