Skip to content

Commit 80af148

Browse files
committed
Specifiy which mongodb extension version to use in builds
1 parent def97e2 commit 80af148

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/php.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,18 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
php-versions: ['7.3', '7.4', '8.0', '8.1']
14+
php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
15+
extensions:
16+
- 'mongodb-1.16.0'
1517
steps:
1618
- name: Checkout
1719
uses: actions/checkout@v2
1820
- name: Install PHP
1921
uses: shivammathur/setup-php@v2
2022
with:
2123
php-version: ${{ matrix.php-versions }}
24+
extensions: ${{ matrix.extensions }}
25+
tools: pecl
2226
- name: Validate composer.json and composer.lock
2327
run: composer validate
2428
- name: Install dependencies

0 commit comments

Comments
 (0)