Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur authored Sep 9, 2023
1 parent 8e7a085 commit 73392d8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
operating-system: [windows-latest]
operating-system: [ubuntu-latest, windows-latest, macos-latest]
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
steps:
- name: Install PHP
Expand All @@ -20,6 +20,8 @@ jobs:

- name: Testing Extensions
run: |
php -r "if(! extension_loaded('sqlsrv')) {throw new Exception('sqlsrv not found');}"
php -r "if(! extension_loaded('pdo_sqlsrv')) {throw new Exception('pdo_sqlsrv not found');}"
php -r "echo phpversion('sqlsrv');"
echo ''
php -r "echo phpversion('pdo_sqlsrv');"

0 comments on commit 73392d8

Please sign in to comment.