Skip to content

Bump symfony/process from 5.2.0 to 5.4.46 #5

Bump symfony/process from 5.2.0 to 5.4.46

Bump symfony/process from 5.2.0 to 5.4.46 #5

Workflow file for this run

name: Autoreview
on:
pull_request:
jobs:
fight-mutants:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ 7.4, 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 --ignore-platform-reqs --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-filter=AM --logger-github