Skip to content

Commit

Permalink
PHP 8.4 support (#225)
Browse files Browse the repository at this point in the history
* PHP 8.4 support

* Update tests.yml

* Update tests.yml
  • Loading branch information
GrahamCampbell authored Nov 3, 2024
1 parent d1c05fd commit ac17834
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ on:

jobs:
tests:
name: Test PHP ${{ matrix.php-version }} ${{ matrix.name }}
runs-on: ubuntu-latest
name: Test PHP ${{ matrix.php }} ${{ matrix.name }}
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3']
php: ['8.1', '8.2', '8.3', '8.4']
composer-flags: ['']
name: ['']
include:
- php: 8.0
- php: '8.0'
composer-flags: '--prefer-lowest'
name: '(prefer lowest dependencies)'

steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down

0 comments on commit ac17834

Please sign in to comment.