Skip to content

Merge pull request #1624 from schmittjoh/feature/new-actions #861

Merge pull request #1624 from schmittjoh/feature/new-actions

Merge pull request #1624 from schmittjoh/feature/new-actions #861

name: "Coding Standards"
on:
pull_request:
push:
branches:
- "master"
jobs:
coding-standards:
name: "Coding Standards"
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- "7.4"
steps:
- name: Checkout
uses: actions/checkout@v6
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
tools: "cs2pr"
extensions: pdo_sqlite
- name: Remove symfony/clock for PHP < 8.1
if: ${{ matrix.php-version < '8.1' }}
run: composer remove --dev symfony/clock --no-update
- name: Install dependencies with Composer
uses: ramsey/composer-install@v4
- name: "Run PHP_CodeSniffer"
run: "vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr"