Skip to content

Commit 4cab392

Browse files
tests: Test against php 8.2 and 8.3 (#1086)
1 parent bbd6304 commit 4cab392

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/run-tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ jobs:
88

99
name: Run Package Tests
1010

11+
strategy:
12+
matrix:
13+
php: ['8.1', '8.2', '8.3']
14+
1115
steps:
1216
- name: Checkout Code
1317
uses: actions/checkout@v2
@@ -21,7 +25,7 @@ jobs:
2125
- name: Setup PHP
2226
uses: shivammathur/setup-php@v2
2327
with:
24-
php-version: 8.1
28+
php-version: ${{ matrix.php }}
2529
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
2630
coverage: none
2731

0 commit comments

Comments
 (0)