Skip to content

[PHP]: Update rector/rector requirement from 1.1.0 to 1.2.0 #2018

[PHP]: Update rector/rector requirement from 1.1.0 to 1.2.0

[PHP]: Update rector/rector requirement from 1.1.0 to 1.2.0 #2018

Workflow file for this run

name: PSalm
on: [ push ]
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
psalm:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
php: [ '7.4', '8.0', '8.1' ]
symfony: [ '~4.4', '~5.4', '~6.0' ]
# This combination is not installable
exclude:
- php: '7.4'
symfony: '~6.0'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: ${{ matrix.php }}
coverage: none # disable xdebug, pcov
extensions: ast, intl
- name: Fix Symfony version
run: |
composer req symfony/flex --no-update
composer config extra.symfony.require "${{ matrix.symfony }}"
composer config --no-plugins allow-plugins.symfony/flex true
- name: Remove Rector
run: |
composer rem rector/rector --dev --no-update
- name: Remove Roave Security Advisories
# Not compatible with symfony/framework-bundle <5.4
run: |
composer rem roave/security-advisories --dev --no-update
- name: Install Composer deps
uses: ramsey/composer-install@v3
with:
composer-options: --no-scripts
- name: Update Composer deps (with Flex)
# The second update is to make Flex able to do its job
run: |
composer update --no-interaction --no-scripts
- name: Install Composer bin PHPUnit
uses: ramsey/composer-install@v3
with:
working-directory: './vendor-bin/phpunit'
- name: Remove Kernel.php
run: |
rm ./src/Kernel.php
- name: Run PSalm
run: |
./vendor-bin/phpunit/vendor/bin/psalm