Skip to content

Commit c657977

Browse files
authored
Add PHP 8.4 to CI, and cleanup CI config
1 parent d95283f commit c657977

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,23 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
16+
php: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
1717

1818
runs-on: ubuntu-latest
1919

2020
name: PHP ${{ matrix.php }}
2121

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v1
24+
uses: actions/checkout@v5
2525

2626
- name: Set up PHP
2727
uses: shivammathur/setup-php@v2
2828
with:
2929
php-version: ${{matrix.php}}
3030

3131
- name: Install
32-
run: |
33-
composer install
32+
run: composer install
3433

3534
- name: Test
3635
run: composer test

0 commit comments

Comments
 (0)