Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

fix cs

fix cs #11

name: "Coding Standards"
on:
pull_request:
branches:
- "*.x"
push:
jobs:
coding-standards:
name: "Coding Standards"
runs-on: "ubuntu-20.04"
strategy:
matrix:
php-version:
- "7.4"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
tools: "cs2pr"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "highest"
# Remove -q when updating to phpcs v4
- name: "Run squizlabs/php_codesniffer"
run: |
vendor/bin/phpcs -q --no-colors --report=diff || true
vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr