Skip to content

Commit c82cea3

Browse files
authored
Merge pull request #175 from RonasIT/add-testing-for-version-8.4
feat: add testing for php 8.4
2 parents 93d1bb8 + 49b21a0 commit c82cea3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/run-tests-with-coverage.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@ on:
99
jobs:
1010
tests-with-coverage:
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
php-version: [ "8.3", "8.4" ]
1215
steps:
1316
- uses: shivammathur/setup-php@v2
1417
with:
15-
php-version: '8.3'
18+
php-version: ${{ matrix.php-version }}
1619
- uses: actions/checkout@v3
1720
- name: Install Dependencies
1821
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

0 commit comments

Comments
 (0)