Skip to content

Commit

Permalink
Add check for gd in php.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Jul 15, 2022
1 parent f3cdc07 commit 3ede765
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
- name: Testing Extensions
run: |
php -m
php -r "if(! extension_loaded('gd')) {throw new Exception('gd not found');}"
php -r "if(! extension_loaded('xml')) {throw new Exception('xml not found');}"
php -r "if(! extension_loaded('Xdebug')) {throw new Exception('Xdebug not found');}"
php -r "if(phpversion()>=7.1 && ! extension_loaded('pcov')) {throw new Exception('PCOV not found');}"
Expand Down

0 comments on commit 3ede765

Please sign in to comment.