File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,6 @@ jobs:
171171 echo COLUMNS=120 >> $GITHUB_ENV
172172 echo COMPOSER_MIN_STAB='composer config minimum-stability ${{ matrix.minimum-stability || 'stable' }} --ansi' >> $GITHUB_ENV
173173 echo COMPOSER_UP='composer update ${{ matrix.dependency-version == 'lowest' && '--prefer-lowest' || '' }} --no-progress --no-interaction --ansi' >> $GITHUB_ENV
174- echo PHPUNIT_INSTALL='vendor/bin/simple-phpunit install' >> $GITHUB_ENV
175174 echo PHPSTAN='vendor/bin/phpstan' >> $GITHUB_ENV
176175
177176 # TODO: Only Turbo has PHPStan configuration, let's improve this later :)
@@ -211,4 +210,4 @@ jobs:
211210 run : |
212211 source .github/workflows/.utils.sh
213212
214- echo "$PACKAGES" | xargs -n1 | parallel -j +3 "_run_task {} '(cd src/{} && $COMPOSER_MIN_STAB && $COMPOSER_UP && $PHPUNIT_INSTALL && $ PHPSTAN)'"
213+ echo "$PACKAGES" | xargs -n1 | parallel -j +3 "_run_task {} '(cd src/{} && $COMPOSER_MIN_STAB && $COMPOSER_UP && $PHPSTAN)'"
Original file line number Diff line number Diff line change 9393 working-directory : src/Turbo
9494 run : |
9595 [ 'lowest' = '${{ matrix.dependency-version }}' ] && export SYMFONY_DEPRECATIONS_HELPER=weak
96- vendor/bin/simple- phpunit
96+ vendor/bin/phpunit
9797 env :
9898 SYMFONY_DEPRECATIONS_HELPER : ' max[self]=1'
Original file line number Diff line number Diff line change 7474 echo COLUMNS=120 >> $GITHUB_ENV
7575 echo COMPOSER_MIN_STAB='composer config minimum-stability ${{ matrix.minimum-stability || 'stable' }} --ansi' >> $GITHUB_ENV
7676 echo COMPOSER_UP='composer update ${{ matrix.dependency-version == 'lowest' && '--prefer-lowest' || '' }} --no-progress --no-interaction --ansi' >> $GITHUB_ENV
77- 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
77+ echo PHPUNIT='vendor/bin/phpunit ${{ matrix.dependency-version == 'lowest' && '--exclude-group skip-on-lowest' || '' }} ${{ matrix.os == 'windows-latest' && '--exclude-group transient-on-windows' || '' }}' >> $GITHUB_ENV
7878 [ 'lowest' = '${{ matrix.dependency-version }}' ] && export SYMFONY_DEPRECATIONS_HELPER=weak
7979
8080 # Turbo has its own workflow file
You can’t perform that action at this time.
0 commit comments