Skip to content

Commit

Permalink
Limit php-cs-sniffer to PHP < 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
koehnlein committed Sep 20, 2023
1 parent 00e12a1 commit 1f574a6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ jobs:
composer test:php:lint
- name: CGL
# causes some problems in this combination
if: ${{ matrix.composer-versions == 'v2' }}
# php-cs-sniffer causes some problems in this combination with composer 1
# php-cs-sniffer does not support PHP 8.3 yet
if: ${{ matrix.composer-versions == 'v2' && matrix.php-versions != '8.3' }}
run: |
composer cgl
Expand Down

0 comments on commit 1f574a6

Please sign in to comment.