Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test on php 8.4 #818

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ on:

jobs:
phpstan:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: PHPStan
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run PHPStan
uses: docker://oskarstark/phpstan-ga
uses: docker://oskarstark/phpstan-ga:1.8.0
env:
REQUIRE_DEV: true
with:
args: analyse
cs-fixer:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: PHP-CS-Fixer
steps:
- name: Checkout
Expand All @@ -27,32 +27,33 @@ jobs:
uses: docker://oskarstark/php-cs-fixer-ga

twig-cs-fixer:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: Twig-CS-Fixer
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Require the vendor
run: composer require --dev --no-update vincentlanglet/twig-cs-fixer ^2.11
run: composer require --dev --no-update vincentlanglet/twig-cs-fixer ^3.4
- name: Update
run: composer update --no-interaction --no-progress
- name: Run
run: vendor/bin/twig-cs-fixer lint templates

tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
php:
- '8.1'
- '8.2'
- '8.3'
- '8.4'
dependency:
- ''
symfony:
- '6.4.*'
- '7.0.*'
- '7.1.*'
- '7.2.*'
include:
- php: '8.1'
symfony: '6.4.*'
Expand All @@ -62,7 +63,7 @@ jobs:
dependency: 'lowest'
exclude:
- php: '8.1'
symfony: '7.0.*'
symfony: '7.1.*'
name: PHPUnit PHP ${{ matrix.php }} ${{ matrix.dependency }} (Symfony ${{ matrix.symfony }})
steps:
- name: Checkout
Expand Down