Skip to content

Drop PHP 8.3 support, add PHP 8.5 to CI matrix (#188) #366

Drop PHP 8.3 support, add PHP 8.5 to CI matrix (#188)

Drop PHP 8.3 support, add PHP 8.5 to CI matrix (#188) #366

Workflow file for this run

name: Infection
on:
pull_request:
push:
branches:
- "*.*.x"
jobs:
Infection:
runs-on: ubuntu-24.04
steps:
- name: "Checkout"
uses: actions/checkout@v6
with:
fetch-depth: 2
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.4"
coverage: "pcov"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v2"
- name: Run Infection
run: vendor/bin/infection --threads=$(nproc)
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}