Remove static return type as it is only supported in PHP 8+. #44
This file contains 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: PHP Code Linting | |
on: | |
push: | |
branches: | |
- main | |
# Only run if PHP-related files changed. | |
paths: | |
- '.github/workflows/php-lint.yml' | |
- '**.php' | |
- 'phpcs.xml.dist' | |
- 'phpmd.xml' | |
- 'phpstan.neon.dist' | |
- 'composer.json' | |
- 'composer.lock' | |
pull_request: | |
branches: | |
- main | |
# Only run if PHP-related files changed. | |
paths: | |
- '.github/workflows/php-lint.yml' | |
- '**.php' | |
- 'phpcs.xml.dist' | |
- 'phpmd.xml' | |
- 'phpstan.neon.dist' | |
- 'composer.json' | |
- 'composer.lock' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
php-lint: | |
name: PHP | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: styfle/[email protected] | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- name: Validate Composer configuration | |
run: composer validate | |
- name: PHP Lint | |
run: composer lint | |
- name: Check PSR-4 mapping | |
run: composer dump-autoload --dev --optimize --strict-psr | |
- name: PHPStan | |
run: composer phpstan | |
- name: PHPMD | |
run: composer phpmd |