We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b36735d commit 9afd231Copy full SHA for 9afd231
.github/workflows/tests.yml
@@ -4,15 +4,11 @@ on:
4
- "push"
5
- "pull_request"
6
7
-env:
8
- SYMFONY_DEV: '7.3.*'
9
- PHP_DEV: '8.5'
10
-
11
jobs:
12
tests:
13
14
runs-on: "ubuntu-latest"
15
- continue-on-error: "${{ matrix.php-versions == env.PHP_DEV || matrix.symfony == env.SYMFONY_DEV }}"
+ continue-on-error: "${{ matrix.php-versions == '8.5' || matrix.symfony == '7.3.*' }}"
16
strategy:
17
matrix:
18
php-versions: ['8.2', '8.3', '8.4', '8.5']
@@ -42,7 +38,7 @@ jobs:
42
38
extensions: "intl, xdebug"
43
39
44
40
- name: "Adapt dependencies"
45
- if: ${{ matrix.symfony == env.SYMFONY_DEV }}
41
+ if: ${{ matrix.symfony == '7.3.*' }}
46
run: "composer config minimum-stability dev"
47
48
- name: "Install dependencies"
0 commit comments