Skip to content

refactor(reading): single data_hex word identity, hash the token (#23… #225

refactor(reading): single data_hex word identity, hash the token (#23…

refactor(reading): single data_hex word identity, hash the token (#23… #225

Workflow file for this run

name: PHP CodeSniffer
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
phpcs:
name: PHP CodeSniffer
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
tools: cs2pr, phpcs
- name: Run PHP CodeSniffer
# --warning-severity=0 ignores warnings (PSR-12 side-effects in view files)
run: phpcs --standard=PSR12 --extensions=php --ignore=vendor/,node_modules/,docs/ --warning-severity=0 src/ --report=checkstyle | cs2pr