diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95d2c46..287b8b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,36 +98,3 @@ jobs: env: CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}" run: "bash <(curl -s https://codecov.io/bash) || true" - - mutation-tests: - name: "Mutation Tests" - - runs-on: "ubuntu-latest" - - strategy: - matrix: - php-version: - - "7.4" - - steps: - - name: "Checkout" - uses: "actions/checkout@v2" - - - name: "Install PHP with extensions" - uses: "shivammathur/setup-php@v1" - with: - php-version: "${{ matrix.php-version }}" - coverage: "pcov" - - - name: "Cache dependencies installed with composer" - uses: "actions/cache@v1" - with: - path: "~/.composer/cache" - key: "php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}" - restore-keys: "php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-" - - - name: "Install dependencies with composer" - run: "./tools/composer update --no-ansi --no-interaction --no-progress" - - - name: "Run mutation tests with infection/infection" - run: "./tools/infection --show-mutations --only-covered"