Skip to content

Commit 948352a

Browse files
committed
Add PHP 8.4 to test CI job
1 parent c09e3f3 commit 948352a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/testing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,27 @@ permissions:
1111
jobs:
1212
test:
1313
runs-on: ubuntu-latest
14-
14+
1515
strategy:
1616
# if one job fails, abort the next ones too, because they'll probably fail - best to save the minutes
1717
fail-fast: false # to change to: true
18-
18+
1919
# run all combinations of the following, to make sure they're working together
2020
matrix:
2121
# os: [ubuntu-latest, macos-latest, windows-latest]
22-
php: ['8.1', '8.2', '8.3']
22+
php: ['8.1', '8.2', '8.3', '8.4']
2323
laravel: [^10.0, ^11.0]
2424
dbal: [^3.0]
2525
phpunit: [10.*]
26-
dependency-version: [stable] # to add: lowest
26+
dependency-version: [stable] # to add: lowest
2727
exclude:
2828
- laravel: "^11.0"
2929
php: "8.1"
3030
dbal: "^3.0"
3131

3232

3333
name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, PHPUnit ${{ matrix.phpunit }}, DBAL ${{ matrix.dbal }} --prefer-${{ matrix.dependency-version }}
34-
34+
3535
steps:
3636
- name: Checkout code
3737
uses: actions/checkout@v4

0 commit comments

Comments
 (0)