Skip to content

Commit

Permalink
Skip running php-cs-fixer on PHP 8.1
Browse files Browse the repository at this point in the history
PHP 8.1 is currently not supported by this.
  • Loading branch information
marc1706 committed Jan 6, 2022
1 parent 3d850fc commit 6eff3de
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,10 @@ jobs:
web-push-testing --port 9012 start
composer test:unit
web-push-testing --port 9012 stop
composer test:typing
composer test:syntax
- name: Run PHPStan
run: composer test:typing

- name: Run php-cs-fixer
if: ${{ matrix.php != '8.1' }}
run: composer test:syntax

0 comments on commit 6eff3de

Please sign in to comment.