Skip to content

Commit c039cbd

Browse files
committed
CI.yaml: Don't run phan on PHP 8.2
1 parent f8d908a commit c039cbd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/CI.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@ jobs:
5757
run: composer update --no-interaction --no-progress --ansi
5858

5959
- run: composer test
60-
- run: composer phan
60+
61+
- name: composer phan
62+
# Phan fails on PHP 8.2 due to warnings; waiting on upstream releases to fix
63+
if: ${{ matrix.php < 8.2 }}
64+
run: composer phan
6165

6266
ocular-push:
6367
runs-on: ubuntu-20.04

0 commit comments

Comments
 (0)