Skip to content

Add laravel 11 support #34

Add laravel 11 support

Add laravel 11 support #34

Workflow file for this run

name: Autoreview
on:
pull_request:
jobs:
fight-mutants:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.0]
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