Skip to content

Add PHPUnit versions 12.3.0 and 12.2.0 to tests #31

Add PHPUnit versions 12.3.0 and 12.2.0 to tests

Add PHPUnit versions 12.3.0 and 12.2.0 to tests #31

name: "Check Coding Standards"
on:
pull_request:
jobs:
coding-standards:
name: "Check Coding Standards"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "7.4"
tools: composer:v2, cs2pr
- name: Install dependencies
run: composer require squizlabs/php_codesniffer --no-interaction --no-progress
- name: "Run phpcs"
run: vendor/bin/phpcs -q --standard=PSR2 classes/ tests/ --report=checkstyle | cs2pr