Skip to content

Commit 8a8f1dd

Browse files
committed
[CI] Tests over Symfony 7.4.0-beta1 and 8.0.0-beta1
1 parent 4652e51 commit 8a8f1dd

File tree

18 files changed

+64
-9194
lines changed

18 files changed

+64
-9194
lines changed

.github/workflows/unit-tests.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
minimum-stability: ['stable']
3535
os: ['']
3636
include:
37-
# dev packages (probably not needed to have multiple such jobs)
3837
- minimum-stability: 'dev'
3938
php-version: '8.5'
4039
# lowest deps
@@ -48,10 +47,11 @@ jobs:
4847
os: 'windows-latest'
4948
# Explicit Symfony versions
5049
- php-version: '8.2'
51-
symfony-version: '7.4.x-dev' # TODO: change to '7.4' when Symfony 7.4 is released
50+
symfony-version: '^7.4.0-RC1' # TODO: change to '7.4.*' when Symfony 7.4 is released
51+
- php-version: '8.4'
52+
symfony-version: '^8.0.0-RC1' # TODO: change to '8.0.*' when Symfony 8.0 is released
5253
- php-version: '8.5'
53-
symfony-version: '8.0.x-dev' # TODO: change to '8.0' when Symfony 8.0 is released
54-
minimum-stability: 'dev' # TODO: remove when Symfony 8.0 is released
54+
symfony-version: '^8.0.0-RC1' # TODO: change to '8.0.*' when Symfony 8.0 is released
5555

5656
env:
5757
SYMFONY_REQUIRE: ${{ matrix.symfony-version || '>=5.4' }} # TODO: To change to '>=6.4' in 3.x
@@ -65,7 +65,7 @@ jobs:
6565
echo COLUMNS=120 >> $GITHUB_ENV
6666
echo COMPOSER_MIN_STAB='composer config minimum-stability ${{ matrix.minimum-stability || 'stable' }} --ansi' >> $GITHUB_ENV
6767
echo COMPOSER_UP='composer update ${{ matrix.dependency-version == 'lowest' && '--prefer-lowest' || '' }} --no-progress --no-interaction --ansi' >> $GITHUB_ENV
68-
echo PHPUNIT='vendor/bin/simple-phpunit ${{ matrix.os == 'windows-latest' && '--exclude-group transient-on-windows' || '' }}' >> $GITHUB_ENV
68+
echo PHPUNIT='vendor/bin/simple-phpunit ${{ matrix.dependency-version == 'lowest' && '--exclude-group skip-on-lowest' || '' }} ${{ matrix.os == 'windows-latest' && '--exclude-group transient-on-windows' || '' }}' >> $GITHUB_ENV
6969
[ 'lowest' = '${{ matrix.dependency-version }}' ] && export SYMFONY_DEPRECATIONS_HELPER=weak
7070
7171
# Swup and Typed have no tests, Turbo has its own workflow file

apps/e2e/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
composer.lock
2+
13
###> symfony/framework-bundle ###
24
/.env.local
35
/.env.local.php

apps/e2e/composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@
7979
"symfony/flex": true,
8080
"symfony/runtime": true
8181
},
82+
"audit": {
83+
"ignore": {
84+
"PKSA-365x-2zjk-pt47": "false positive for symfony/http-foundation"
85+
}
86+
},
8287
"bump-after-update": true,
8388
"sort-packages": true
8489
},

0 commit comments

Comments
 (0)