Skip to content

Fix device status transition on reload and improve option update robustness #95

Fix device status transition on reload and improve option update robustness

Fix device status transition on reload and improve option update robustness #95

Workflow file for this run

name: Check Style
on: [push, pull_request]
jobs:
style:
runs-on: ubuntu-latest
steps:
- name: Checkout module
uses: actions/checkout@master
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install PHP CS Fixer
run: |
curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/latest/download/php-cs-fixer.phar -o php-cs-fixer.phar
chmod +x php-cs-fixer.phar
- name: Run style check
run: php php-cs-fixer.phar fix --config=.php-cs-fixer.php --dry-run --diff --allow-risky=yes