Skip to content

Commit

Permalink
Remove env variables from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SenseException committed Feb 15, 2025
1 parent b36735d commit 9afd231
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,11 @@ on:
- "push"
- "pull_request"

env:
SYMFONY_DEV: '7.3.*'
PHP_DEV: '8.5'

jobs:
tests:

runs-on: "ubuntu-latest"
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.*' }}"
strategy:
matrix:
php-versions: ['8.2', '8.3', '8.4', '8.5']
Expand Down Expand Up @@ -42,7 +38,7 @@ jobs:
extensions: "intl, xdebug"

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

- name: "Install dependencies"
Expand Down

0 comments on commit 9afd231

Please sign in to comment.