Skip to content

Commit 9afd231

Browse files
Remove env variables from workflow
1 parent b36735d commit 9afd231

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@ on:
44
- "push"
55
- "pull_request"
66

7-
env:
8-
SYMFONY_DEV: '7.3.*'
9-
PHP_DEV: '8.5'
10-
117
jobs:
128
tests:
139

1410
runs-on: "ubuntu-latest"
15-
continue-on-error: "${{ matrix.php-versions == env.PHP_DEV || matrix.symfony == env.SYMFONY_DEV }}"
11+
continue-on-error: "${{ matrix.php-versions == '8.5' || matrix.symfony == '7.3.*' }}"
1612
strategy:
1713
matrix:
1814
php-versions: ['8.2', '8.3', '8.4', '8.5']
@@ -42,7 +38,7 @@ jobs:
4238
extensions: "intl, xdebug"
4339

4440
- name: "Adapt dependencies"
45-
if: ${{ matrix.symfony == env.SYMFONY_DEV }}
41+
if: ${{ matrix.symfony == '7.3.*' }}
4642
run: "composer config minimum-stability dev"
4743

4844
- name: "Install dependencies"

0 commit comments

Comments
 (0)