Skip to content

Commit

Permalink
Temporarily disable mutation tests until Infection is compatible with…
Browse files Browse the repository at this point in the history
… PHPUnit 9.3
  • Loading branch information
sebastianbergmann committed Aug 7, 2020
1 parent 346b351 commit 1a122f9
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 1a122f9

Please sign in to comment.