Skip to content

Commit

Permalink
Merge pull request #818 from garak/test84
Browse files Browse the repository at this point in the history
test on php 8.4
  • Loading branch information
garak authored Dec 16, 2024
2 parents 1a00f88 + c169266 commit 51c29fe
Showing 1 changed file with 9 additions and 8 deletions.
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

0 comments on commit 51c29fe

Please sign in to comment.