Skip to content

Merge pull request #98 from igordeveloper/master #96

Merge pull request #98 from igordeveloper/master

Merge pull request #98 from igordeveloper/master #96

Workflow file for this run

name: Check Codestyle
on:
push:
branches:
- master
pull_request:
branches:
- "*"
# Allow manually triggering the workflow.
workflow_dispatch:
jobs:
fix-style:
name: Fix Code Style
timeout-minutes: 15
runs-on: ubuntu-latest
env:
COMPOSER_NO_INTERACTION: 1
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
coverage: pcov
tools: composer, cs2pr
extensions: pcov
- name: Install dependencies
run: |
composer install --prefer-dist --no-progress
- name: Check Code Style
run: ./vendor/bin/phpcs --report-full --report-checkstyle=./phpcs-report.xml
- name: Show PHPCS results in PR
run: cs2pr ./phpcs-report.xml