Skip to content

Commit

Permalink
Add tests with dbase ext for PHP 8.4
Browse files Browse the repository at this point in the history
Signed-off-by: Maurício Meneghini Fauth <[email protected]>
  • Loading branch information
MauricioFauth committed Sep 11, 2023
1 parent a24bb8b commit 22923d6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ on:

jobs:
test-php:
name: Test on PHP ${{ matrix.php-version }}
name: Test on PHP ${{ matrix.php-version }} (${{ matrix.extensions }})
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
php-version: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
php-extensions: ['dbase', '']
php-extensions: ['dbase', ':dbase']
os: [ubuntu-latest]
experimental: [false]
composer-options: ['']
include:
- { php-version: '8.4', php-extensions: '', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest }
- { php-version: '8.4', php-extensions: 'dbase', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest }
- { php-version: '8.4', php-extensions: ':dbase', composer-options: '--ignore-platform-req=php+', experimental: true, os: ubuntu-latest }
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down

0 comments on commit 22923d6

Please sign in to comment.