Skip to content

ci: fix variable reference (#34) #76

ci: fix variable reference (#34)

ci: fix variable reference (#34) #76

Workflow file for this run

name: Infection
on:
pull_request:
push:
branches:
- "*.*.x"
workflow_dispatch:
jobs:
Infection:
runs-on: ubuntu-22.04
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
with:
fetch-depth: 2
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.1"
coverage: "pcov"
extensions: "ds, mbstring"
tools: "cs2pr"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v1"
- name: Run Infection
run: vendor/bin/roave-infection-static-analysis-plugin --threads=$(nproc)
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}