Skip to content

feat: add packages required for serialization (#560) #7

feat: add packages required for serialization (#560)

feat: add packages required for serialization (#560) #7

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: "Integrate"
on:
push:
branches:
- "*.*.x"
jobs:
mutation_testing:

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

View workflow run for this annotation

GitHub Actions / Integrate

Invalid workflow file

The workflow is not valid. .github/workflows/infection.yml (Line: 11, Col: 3): The workflow must contain at least one job with no dependencies.
name: "5️⃣ Mutation Testing"
needs:
- "byte_level"
- "syntax_errors"
runs-on: "ubuntu-latest"
steps:
- name: "Set up PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.2"
extensions: "ctype, curl, dom, json, libxml, mbstring, openssl, phar, simplexml, sodium, tokenizer, xml, xmlwriter, zlib"
coverage: "xdebug"
- name: "Checkout code"
uses: "actions/checkout@v4"
- 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"