Add support for nested aggregations #311
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Autoreview | |
on: | |
pull_request: | |
jobs: | |
fight-mutants: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [8.1, 8.2, 8.3] | |
name: Mutation Testing Code Review Annotations ${{ matrix.php }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: xdebug | |
- name: Install dependencies | |
run: composer update --prefer-dist --no-suggest --no-interaction --no-scripts | |
- name: Run Infection for added and modified files only | |
run: | | |
git fetch --depth=1 origin $GITHUB_BASE_REF | |
php vendor/bin/infection -j2 --git-diff-base=origin/$GITHUB_BASE_REF --git-diff-filter=AM --logger-github |