We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d5201 commit 3e6d7cfCopy full SHA for 3e6d7cf
.github/workflows/code-quality.yaml
@@ -89,3 +89,11 @@ jobs:
89
BRIDGES=$(find src/agent/src/Bridge/ -mindepth 1 -maxdepth 1 -type d -printf '%f\n' | sort | tr '\n' ' ')
90
echo "Bridges: $BRIDGES"
91
echo "$BRIDGES" | xargs -n1 | parallel -j +3 "_run_task {} '(cd src/agent/src/Bridge/{} && $COMPOSER_UP && $PHPSTAN)'"
92
+
93
+ - name: Run PHPStan on platform bridges
94
+ run: |
95
+ source .github/workflows/.utils.sh
96
97
+ BRIDGES=$(find src/platform/src/Bridge/ -mindepth 1 -maxdepth 1 -type d -printf '%f\n' | sort | tr '\n' ' ')
98
+ echo "Bridges: $BRIDGES"
99
+ echo "$BRIDGES" | xargs -n1 | parallel -j +3 "_run_task {} '(cd src/platform/src/Bridge/{} && $COMPOSER_UP && $PHPSTAN)'"
0 commit comments