Preparation for PHP 8.4: Rector rules and CI compatibility check #68
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull Request Check | |
| on: [pull_request] | |
| jobs: | |
| unit-test: | |
| name: Unit testing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.3.29' | |
| tools: composer | |
| coverage: none | |
| - name: Cache Composer dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: /tmp/composer-cache | |
| key: ${{ runner.os }}-${{ hashFiles('composer.lock') }} | |
| - name: Installing dependencies | |
| env: | |
| COMPOSER_CACHE_DIR: /tmp/composer-cache | |
| run: composer install --no-interaction --no-progress --prefer-dist | |
| - name: Running unit test | |
| run: vendor/bin/phpunit --configuration phpunit.xml | |
| php84-syntax-check: | |
| name: PHP 8.4 syntax compatibility | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup PHP 8.4 | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| tools: composer | |
| coverage: none | |
| - name: Cache Composer dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: /tmp/composer-cache | |
| key: ${{ runner.os }}-${{ hashFiles('composer.lock') }} | |
| - name: Install dependencies | |
| env: | |
| COMPOSER_CACHE_DIR: /tmp/composer-cache | |
| run: composer install --no-interaction --no-progress --prefer-dist | |
| - name: Run Rector dry-run on changed PHP files | |
| run: | | |
| CHANGED=$(git diff --name-only origin/${{ github.base_ref }}...HEAD -- '*.php') | |
| if [ -z "$CHANGED" ]; then | |
| echo "No PHP files changed." | |
| exit 0 | |
| fi | |
| echo "Changed PHP files:" | |
| echo "$CHANGED" | |
| vendor/bin/rector process --dry-run --no-progress-bar $CHANGED |