Skip to content

Commit

Permalink
Enable php 8.4 and Symfony 7.2 in tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SenseException committed Nov 10, 2024
1 parent e20aca7 commit 6211567
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@ jobs:
tests:

runs-on: "ubuntu-latest"
continue-on-error: "${{ matrix.php-versions == '8.4' || matrix.symfony == '7.1.*' }}"
continue-on-error: "${{ matrix.php-versions == '8.4' || matrix.symfony == '7.2.*' }}"
strategy:
matrix:
php-versions: ['8.2', '8.3']
php-versions: ['8.2', '8.3', '8.4']
symfony:
- '5.4.*'
- '6.4.*'
- '7.0.*'
- '7.1.*'
- '7.2.*'

steps:
- uses: "actions/checkout@v4"
Expand All @@ -37,7 +38,7 @@ jobs:
extensions: "intl, xdebug"

- name: "Adapt dependencies"
if: ${{ matrix.symfony == '7.1.*' }}
if: ${{ matrix.symfony == '7.2.*' }}
run: "composer config minimum-stability dev"

- name: "Install dependencies"
Expand Down

0 comments on commit 6211567

Please sign in to comment.