Skip to content

fix: PHPUnit 10 config in Symfony bridge #293

fix: PHPUnit 10 config in Symfony bridge

fix: PHPUnit 10 config in Symfony bridge #293

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- "master"
jobs:
MutationTest:
runs-on: ubuntu-latest
env:
PHP_VERSION: ${{ matrix.php }}
strategy:
matrix:
php: [ "8.2", "8.3" ]
dependencies: [ lowest, highest ]
steps:
-
uses: actions/checkout@v3
-
name: "Composer install: ${{ matrix.dependencies }}"
run: make all/composer/install-${{ matrix.dependencies }}
-
name: Tests with mutation
run: make test
CodeQualityAnalysis:
runs-on: ubuntu-latest
env:
PHP_VERSION: ${{ matrix.php }}
strategy:
matrix:
php: [ "8.2", "8.3" ]
dependencies: [ lowest, highest ]
steps:
-
uses: "actions/checkout@v3"
-
name: "Composer install: ${{ matrix.dependencies }}"
run: make all/composer/install-${{ matrix.dependencies }}
-
name: Run code quality analysis
run: make analyze