Skip to content

Commit

Permalink
Test on PHP 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker committed Nov 21, 2024
1 parent b7e1592 commit 63b931e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ['8.1', '8.2', '8.3']
symfony: ['5.4.*', '6.4.*', '7.1.*', '7.2.*@beta']
php: ['8.1', '8.2', '8.3', '8.4']
symfony: ['5.4.*', '6.4.*', '7.1.*', '7.2.*@rc']
pagerfanta: ['']
composer-flags: ['--prefer-stable']
can-fail: [false]
with-twig: [true]
include:
# Run "no Twig" build on latest PHP and Symfony LTS
- php: '8.2'
- php: '8.4'
symfony: '6.4.*'
composer-flags: '--prefer-stable'
can-fail: false
Expand All @@ -31,7 +31,7 @@ jobs:
- php: '8.1'
symfony: '7.1.*'
- php: '8.1'
symfony: '7.2.*@beta'
symfony: '7.2.*@rc'

name: "PHP ${{ matrix.php }}${{ matrix.pagerfanta != '' && format(' - Pagerfanta {0}', matrix.pagerfanta) || '' }}${{ matrix.with-twig == false && ' - Without Twig' || '' }} - Symfony ${{ matrix.symfony }}${{ matrix.composer-flags != '' && format(' - Composer {0}', matrix.composer-flags) || '' }}"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
php-version: '8.4'
tools: composer:v2,flex
extensions: curl, iconv, mbstring, pdo, pdo_sqlite, sqlite, zip
coverage: none

- name: Install dependencies
run: composer update --prefer-stable --prefer-dist
env:
SYMFONY_REQUIRE: '7.2.*@beta'
SYMFONY_REQUIRE: '7.2.*@rc'

- name: Run PHPStan
run: vendor/bin/phpstan analyze --error-format=github

0 comments on commit 63b931e

Please sign in to comment.