Skip to content

Commit

Permalink
Run CI against PHP 8.4
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Peveler <[email protected]>
  • Loading branch information
MasterOdin authored Nov 20, 2024
1 parent 411d94a commit e842703
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3']
php-version: ['8.1', '8.4']
db-type: [sqlite, mysql, pgsql]
prefer-lowest: ['']
include:
- php-version: '8.3'
db-type: sqlite
- php-version: '8.2'
db-type: mysql
prefer-lowest: ''
- php-version: '8.1'
db-type: sqlite
prefer-lowest: prefer-lowest

steps:
- name: Setup MySQL latest
if: matrix.db-type == 'mysql' && matrix.php-version == '8.3'
if: matrix.db-type == 'mysql' && matrix.php-version == '8.4'
run: docker run --rm --name=mysqld -e MYSQL_ROOT_PASSWORD=root -e MYSQL_DATABASE=cakephp -p 3306:3306 -d mysql:8.4

- name: Setup MySQL 8.0
Expand Down

0 comments on commit e842703

Please sign in to comment.