Add debug log notification #337
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: Code Linting | |
on: | |
push: | |
branches: | |
- main | |
# Only run if PHP-related files changed. | |
paths: | |
- '.github/workflows/php-lint.yml' | |
- '**.php' | |
- 'phpcs.xml.dist' | |
- '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' | |
- 'phpstan.neon.dist' | |
- 'composer.json' | |
- 'composer.lock' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
php-syntax: | |
name: PHP syntax | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
- '8.2' | |
- '8.3' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
tools: parallel-lint | |
- name: Check source code for syntax errors | |
run: 'composer exec --no-interaction -- parallel-lint *.php inc/ src/' | |
php-lint: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: styfle/cancel-workflow-action@0.9.1 | |
- uses: actions/checkout@v3 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: | | |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Validate Composer configuration | |
run: composer validate --strict | |
- name: Composer Install | |
run: composer install --no-interaction --no-progress | |
- name: Check PSR-4 mapping | |
run: composer dump-autoload --dev --optimize --strict-psr | |
- name: PHPStan | |
run: composer phpstan | |
phpcs: | |
name: PHPCS check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: '7.4' | |
ini-values: memory_limit=1G' | |
coverage: none | |
tools: cs2pr | |
- name: Install Composer dependencies | |
uses: "ramsey/composer-install@v2" | |
with: | |
# Bust the cache at least once a month - output format: YYYY-MM. | |
custom-cache-suffix: $(date -u "+%Y-%m") | |
- name: Run PHPCS checks | |
id: phpcs | |
run: vendor/bin/phpcs --report-full --report-checkstyle=./phpcs-report.xml | |
- name: Show PHPCS results in PR | |
if: ${{ always() && steps.phpcs.outcome == 'failure' }} | |
run: cs2pr ./phpcs-report.xml |