Skip to content

Commit d142581

Browse files
committed
Test on PHP 8.4
1 parent f37af2d commit d142581

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ]
12+
php: [ 7.4, 8.0, 8.1, 8.2, 8.3, 8.4 ]
1313

1414
steps:
1515
- name: Checkout code
@@ -28,7 +28,8 @@ jobs:
2828
- name: Install dependencies
2929
run: composer install --prefer-dist --no-progress --no-suggest
3030

31+
- name: Run PHPCS tests
32+
run: vendor/bin/phpcs src --standard=PSR12
33+
3134
- name: Run test suite
32-
run: |
33-
vendor/bin/phpcs src --standard=PSR12
34-
vendor/bin/phpunit
35+
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)