Skip to content

Refactor PHP codebase and update dependencies (#213) #1

Refactor PHP codebase and update dependencies (#213)

Refactor PHP codebase and update dependencies (#213) #1

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: "Infection"
on:
push:
branches:
- "*.x"
jobs:
mutation_testing:
name: "5️⃣ Mutation Testing"

Check failure on line 12 in .github/workflows/infection.yml

View workflow run for this annotation

GitHub Actions / Infection

Invalid workflow file

The workflow is not valid. .github/workflows/infection.yml (Line: 12, Col: 5): Required property is missing: runs-on
steps:
- name: "Set up PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.1"
extensions: "mbstring"
coverage: "xdebug"
- name: "Checkout code"
uses: "actions/checkout@v3"
- name: "Fetch Git base reference"
run: "git fetch --depth=1 origin ${GITHUB_BASE_REF}"
- name: "Install dependencies"
uses: "ramsey/composer-install@v2"
with:
dependency-versions: "highest"
composer-options: "--optimize-autoloader"
- name: "Execute Infection"
run: "make ci-mu"