Upgrade ECS to v13 #52
Workflow file for this run
This file contains hidden or 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.5] | |
| 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 |