Skip to content

[TASK] Use PHP 8.3 in CGL workflow until PHP-CS-Fixer supports PHP 8.4 #230

[TASK] Use PHP 8.3 in CGL workflow until PHP-CS-Fixer supports PHP 8.4

[TASK] Use PHP 8.3 in CGL workflow until PHP-CS-Fixer supports PHP 8.4 #230

Workflow file for this run

name: CGL
on:
push:
branches:
- main
- 'renovate/**'
pull_request:
branches:
- main
jobs:
cgl:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Prepare environment
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
# @todo Use PHP 8.4 once PHP-CS-Fixer supports PHP 8.4
php-version: 8.3
tools: composer:v2, composer-require-checker, composer-unused, cs2pr
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Validation
- name: Validate composer.json
run: composer validate
# Install dependencies
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
# Check Composer dependencies
- name: Check dependencies
run: composer-require-checker check
- name: Check for unused dependencies
run: composer-unused --excludePackage=cuyz/valinor
# Linting
- name: Lint composer.json
run: composer lint:composer
- name: Lint Editorconfig
run: composer lint:editorconfig
- name: Lint PHP
run: composer lint:php -- --format checkstyle | cs2pr
# SCA
- name: SCA PHP
run: composer sca:php -- --error-format github
# Migration
- name: Run Rector migration
run: composer migration:rector -- --dry-run