Skip to content

Commit

Permalink
Add PHP 8.4 in GitHub test workflow (#16)
Browse files Browse the repository at this point in the history
* Add PHP 8.4 in GitHub test workflow
* Update github workflows actions
  • Loading branch information
olivervogel authored Sep 20, 2024
1 parent ac406ec commit 0f8a118
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.1', '8.2', '8.3']
php: ['8.1', '8.2', '8.3', '8.4']
name: Testing on PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring,bcmath
extensions: mbstring, bcmath, gd
tools: composer

- name: Install PHP dependencies
Expand Down

0 comments on commit 0f8a118

Please sign in to comment.