Skip to content

Commit 22923d6

Browse files
committed
Add tests with dbase ext for PHP 8.4
Signed-off-by: Maurício Meneghini Fauth <[email protected]>
1 parent a24bb8b commit 22923d6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/tests.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,19 @@ on:
66

77
jobs:
88
test-php:
9-
name: Test on PHP ${{ matrix.php-version }}
9+
name: Test on PHP ${{ matrix.php-version }} (${{ matrix.extensions }})
1010
runs-on: ${{ matrix.os }}
1111
continue-on-error: ${{ matrix.experimental }}
1212
strategy:
1313
matrix:
1414
php-version: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
15-
php-extensions: ['dbase', '']
15+
php-extensions: ['dbase', ':dbase']
1616
os: [ubuntu-latest]
1717
experimental: [false]
1818
composer-options: ['']
1919
include:
20-
- { php-version: '8.4', php-extensions: '', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest }
20+
- { php-version: '8.4', php-extensions: 'dbase', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest }
21+
- { php-version: '8.4', php-extensions: ':dbase', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest }
2122
steps:
2223
- name: Checkout code
2324
uses: actions/checkout@v4

0 commit comments

Comments
 (0)