Fix device status transition on reload and improve option update robustness #86
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check Style | |
| on: [push, pull_request] | |
| jobs: | |
| style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout module | |
| uses: actions/checkout@master | |
| - name: Check style | |
| run: | | |
| composer require --dev friendsofphp/php-cs-fixer | |
| vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --dry-run --diff --allow-risky=yes |