From 6005f19736c760e46d4ddc60f178448e90f4d271 Mon Sep 17 00:00:00 2001 From: Filippo Tessarotto Date: Wed, 21 Aug 2024 12:37:09 +0200 Subject: [PATCH] Let infection run the test suite for its job (#875) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37c3541c..40b9fe9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -107,12 +107,12 @@ jobs: - name: "Infection on DIFF" if: ${{ github.event_name == 'pull_request' }} timeout-minutes: 30 - run: "vendor/bin/infection run --ansi --threads=$(nproc) --skip-initial-tests --coverage=coverage --git-diff-lines --git-diff-base=origin/${{ github.base_ref }} --show-mutations --verbose --ignore-msi-with-no-mutations --min-msi=100" + run: "vendor/bin/infection run --ansi --threads=$(nproc) --git-diff-lines --git-diff-base=origin/${{ github.base_ref }} --show-mutations --verbose --ignore-msi-with-no-mutations --min-msi=100" - name: "Infection on complete code base" if: ${{ github.event_name != 'pull_request' && !startsWith(github.ref_name, 'renovate/') }} timeout-minutes: 30 - run: "vendor/bin/infection run --ansi --threads=$(nproc) --skip-initial-tests --coverage=coverage" + run: "vendor/bin/infection run --ansi --threads=$(nproc)" env: INFECTION_BADGE_API_KEY: ${{ secrets.INFECTION_BADGE_API_KEY }}