Skip to content

Reporting: add top talkers #73

Reporting: add top talkers

Reporting: add top talkers #73

name: Coding Standards
on:
push:
pull_request:
jobs:
Tests:
name: Coding Standards (PHP ${{ matrix.php }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- 7.4
- 8.0
- 8.1
- 8.2
- 8.3
- 8.4
continue-on-error: ${{ matrix.php == '8.4' }}
steps:
- name: Check out Source Code
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
- name: Install Dependencies with Composer
run: composer install --ignore-platform-req=php+
- name: Verify Coding Standards
run: vendor/bin/phpcs