Skip to content

Commit 5c29340

Browse files
committed
don't run psalm and phan with PHP 8.5
1 parent 1e17832 commit 5c29340

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ jobs:
8888
- name: Run PHPStan
8989
run: vendor/bin/phpstan analyse --no-progress
9090
- name: Run psalm
91-
if: ${{ matrix.os != 'windows-latest' }}
91+
if: ${{ matrix.os != 'windows-latest' && matrix.php_version != '8.5' }}
9292
run: vendor/bin/psalm
9393
- name: Run phan
94-
if: ${{ matrix.os != 'windows-latest' }}
94+
if: ${{ matrix.os != 'windows-latest' && matrix.php_version != '8.5' }}
9595
run: vendor/bin/phan
9696
# AST 1.1 binary for Windows seems to be missing on PECL
9797
- name: Run phan with polyfill

0 commit comments

Comments
 (0)