Skip to content

Commit

Permalink
Merge pull request #15 from PUGX/update-tests
Browse files Browse the repository at this point in the history
👷 test on PHP 8.4
  • Loading branch information
garak authored Oct 26, 2024
2 parents d5759eb + 9995d16 commit 921ca56
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
phpstan:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: PHPStan
steps:
- name: Checkout
Expand All @@ -18,40 +18,43 @@ jobs:
with:
args: analyse
cs-fixer:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: PHP-CS-Fixer
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Fix CS
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.12
run: composer require --dev --no-update vincentlanglet/twig-cs-fixer ^3.1
- 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:
include:
- description: 'Lowest'
php: '8.1'
symfony: 6.4.*@dev
symfony: 6.4.*
composer_option: '--prefer-lowest'
- description: 'Symfony 6.4'
php: '8.2'
symfony: 6.4.*@dev
- description: 'Symfony 7.0'
symfony: 6.4.*
- description: 'Symfony 7.1'
php: '8.3'
symfony: 7.0.*@dev
symfony: 7.1.*
- description: 'Symfony 7.2'
php: '8.4'
symfony: 7.2.*@dev
name: PHP ${{ matrix.php }} tests (${{ matrix.description }})
steps:
- name: Checkout
Expand Down

0 comments on commit 921ca56

Please sign in to comment.