From 1cd6284bbf44b6fe70ffb5318698a7fac73b1515 Mon Sep 17 00:00:00 2001 From: Simon Podlipsky Date: Thu, 11 May 2023 14:10:08 +0200 Subject: [PATCH] ci: disable infection since it segfaults in GA (#138) --- .github/workflows/infection.yaml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/infection.yaml diff --git a/.github/workflows/infection.yaml b/.github/workflows/infection.yaml deleted file mode 100644 index 1a9462c..0000000 --- a/.github/workflows/infection.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: Infection - -on: - pull_request: - push: - branches: - - "*.*.x" - -jobs: - Infection: - runs-on: ubuntu-20.04 - - steps: - - name: "Checkout" - uses: actions/checkout@v3 - with: - fetch-depth: 2 - - - name: "Install PHP" - uses: "shivammathur/setup-php@v2" - with: - php-version: 8.1 - coverage: "pcov" - - - name: "Install dependencies with Composer" - uses: "ramsey/composer-install@v2" - - - name: Run Infection - run: vendor/bin/roave-infection-static-analysis-plugin --threads=$(nproc) - env: - STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} -