File tree Expand file tree Collapse file tree 1 file changed +4
-14
lines changed
Expand file tree Collapse file tree 1 file changed +4
-14
lines changed Original file line number Diff line number Diff line change 88 runs-on : ubuntu-latest
99 strategy :
1010 matrix :
11- TYPO3 : [ '11' , ' 12', '13', '14' ]
11+ TYPO3 : [ '12', '13', '14' ]
1212
1313 steps :
1414 - name : Checkout
@@ -39,27 +39,17 @@ jobs:
3939 - name : Install composer dependencies TYPO3 13
4040 if : matrix.TYPO3 == '13'
4141 run : |
42- composer install -- no-progress --no-interaction
42+ composer require typo3/cms-core:^13.4 -- no-progress --no-interaction --dev -W
4343 - name : Install composer dependencies TYPO3 12
4444 if : matrix.TYPO3 == '12'
4545 run : |
4646 composer require typo3/cms-core:^12.4 --no-progress --no-interaction --dev -W
47- - name : Install composer dependencies TYPO3 11
48- if : matrix.TYPO3 == '11'
49- run : |
50- composer require typo3/cms-core:^11.5 --no-progress --no-interaction --dev -W
51- - name : Phpstan 14
52- if : matrix.TYPO3 == '14'
53- run : .Build/bin/phpstan analyze -c Build/phpstan.neon
54- - name : Phpstan 13
55- if : matrix.TYPO3 == '13'
47+ - name : Phpstan 13/14
48+ if : matrix.TYPO3 == '14' || matrix.TYPO3 == '13'
5649 run : .Build/bin/phpstan analyze -c Build/phpstan.neon
5750 - name : Phpstan 12
5851 if : matrix.TYPO3 == '12'
5952 run : .Build/bin/phpstan analyze -c Build/phpstan12.neon
60- - name : Phpstan 11
61- if : matrix.TYPO3 == '11'
62- run : .Build/bin/phpstan analyze -c Build/phpstan11.neon
6353 - name : Phpcsfix
6454 run : .Build/bin/php-cs-fixer fix --config=Build/php-cs-fixer.php --dry-run --stop-on-violation --using-cache=no
6555 - name : Functional Tests
You can’t perform that action at this time.
0 commit comments