File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change 5555 echo COMPOSER_VALIDATE='composer validate --strict' >> $GITHUB_ENV
5656 echo PHPSTAN='vendor/bin/phpstan' >> $GITHUB_ENV
5757
58+ PACKAGES=$(find src/ -mindepth 2 -type f -name composer.json -not -path "*/vendor/*" -printf '%h\n' | sed 's/^src\///' | grep -Ev "examples" | sort | tr '\n' ' ')
5859 echo "Packages: $PACKAGES"
5960 echo "PACKAGES=$PACKAGES" >> $GITHUB_ENV
6061
Original file line number Diff line number Diff line change 4848 echo PHPUNIT='vendor/bin/phpunit' >> $GITHUB_ENV
4949 [ 'lowest' = '${{ matrix.dependency-version }}' ] && export SYMFONY_DEPRECATIONS_HELPER=weak
5050
51+ PACKAGES=$(find src/ -mindepth 2 -type f -name composer.json -not -path "*/vendor/*" -printf '%h\n' | sed 's/^src\///' | grep -Ev "examples" | sort | tr '\n' ' ')
5152 echo "Packages: $PACKAGES"
5253 echo "PACKAGES=$PACKAGES" >> $GITHUB_ENV
5354
You can’t perform that action at this time.
0 commit comments