Skip to content

Commit

Permalink
Add PHP 8.4 to GitHub Actions test matrix (#11)
Browse files Browse the repository at this point in the history
This update includes PHP 8.4 in the matrix of PHP versions used for testing in the GitHub Actions workflow. The addition ensures that the project's code is tested against the latest PHP version, enhancing compatibility and stability.
  • Loading branch information
ActuallyConnor authored Nov 28, 2024
1 parent e118a25 commit e8759de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
php-versions: [ '8.0', '8.1', '8.2', '8.3' ]
php-versions: [ '8.0', '8.1', '8.2', '8.3', '8.4' ]

steps:
- uses: actions/checkout@v4
Expand All @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
php-versions: [ '8.0', '8.1', '8.2', '8.3' ]
php-versions: [ '8.0', '8.1', '8.2', '8.3', '8.4' ]

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e8759de

Please sign in to comment.