Update PHP versions in PHPUnit workflow to include 8.4 #152
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: PSR12 | |
| on: [push, pull_request] | |
| jobs: | |
| phpcs: | |
| name: PHP Code sniffer | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Update composer.lock | |
| run: composer update | |
| - name: Validate composer.json and composer.lock | |
| run: composer validate | |
| - name: Install dependencies | |
| run: composer install --prefer-dist --no-progress --no-suggest | |
| - name: Detecting PHP Code Standards Violations | |
| run: composer run-script phpcs |