Skip to content

Commit

Permalink
CI.yaml: Don't run phan on PHP 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
reedy committed Apr 15, 2023
1 parent f8d908a commit c039cbd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ jobs:
run: composer update --no-interaction --no-progress --ansi

- run: composer test
- run: composer phan

- name: composer phan
# Phan fails on PHP 8.2 due to warnings; waiting on upstream releases to fix
if: ${{ matrix.php < 8.2 }}
run: composer phan

ocular-push:
runs-on: ubuntu-20.04
Expand Down

0 comments on commit c039cbd

Please sign in to comment.