Bump symfony/process from 7.0.4 to 7.1.7 #96
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: infection | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
infection: | |
name: "Running Infection" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, intl, fileinfo, sodium | |
coverage: pcov | |
- name: Cache composer dependencies | |
uses: actions/cache@v2 | |
with: | |
path: vendor | |
key: composer-${{ hashFiles('composer.lock') }} | |
- name: Install dependencies | |
run: | | |
composer require "laravel/framework:10.*" "pestphp/pest:^1.16" "nesbot/carbon:^2.64.1" --dev --no-interaction --no-update | |
composer update --prefer-stable --prefer-dist --no-interaction | |
- name: Run infection | |
run: ./vendor/bin/infection --show-mutations --min-msi=100 --min-covered-msi=100 |