Skip to content

Remove xdebug from PHPUnit command in Makefile #130

Remove xdebug from PHPUnit command in Makefile

Remove xdebug from PHPUnit command in Makefile #130

Workflow file for this run

on:
push:
pull_request:
name: Rector lint checks
jobs:
static-analysis:
name: "Rector"
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
php-version:
- "8.3"
dependencies: [ highest ]
operating-system: [ ubuntu-latest]
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
extensions: json, bcmath, curl, intl, mbstring
tools: composer:v2
- name: "Install lowest dependencies"
if: ${{ matrix.dependencies == 'lowest' }}
run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest"
- name: "Install highest dependencies"
if: ${{ matrix.dependencies == 'highest' }}
run: "composer update --no-interaction --no-progress --no-suggest"
- name: "Rector"
run: "vendor/bin/rector process --dry-run"
- name: "is Rector check succeeded"
if: ${{ success() }}
run: |
echo '✅ Rector check pass, congratulations!'
- name: "is PHPStan check failed"
if: ${{ failure() }}
run: |
echo '::error:: ❗️ Rector check failed (╯°益°)╯彡┻━┻'