Skip to content

chore(deps-dev): update phpunit/phpunit requirement from ^10.5.16 to ^11.2.8 #36

chore(deps-dev): update phpunit/phpunit requirement from ^10.5.16 to ^11.2.8

chore(deps-dev): update phpunit/phpunit requirement from ^10.5.16 to ^11.2.8 #36

Workflow file for this run

name: Code Analysis
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
# see https://github.com/composer/composer/issues/9368#issuecomment-718112361
COMPOSER_ROOT_VERSION: "dev-main"
jobs:
code_analysis:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3']
actions:
-
name: 'Composer Validate'
run: composer validate
-
name: 'Rector'
run: composer rector
-
name: 'PHPStan'
run: composer phpstan
name: ${{ matrix.actions.name }} - ${{ matrix.php-versions }}
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- uses: ramsey/composer-install@v3
- name: Make Folder Cache Rector
if: matrix.actions.name == 'Rector'
run: mkdir -p /tmp/rector
- name: Rector Cache
if: matrix.actions.name == 'Rector'
uses: actions/cache@v4
with:
path: /tmp/rector
key: ${{ runner.os }}-rector-${{ github.run_id }}
restore-keys: ${{ runner.os }}-rector-
- run: ${{ matrix.actions.run }}