Skip to content

Commit c73f646

Browse files
committed
-
1 parent 17722e0 commit c73f646

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/code-quality.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,15 @@ jobs:
6060
- name: Build root packages
6161
run: php .github/build-packages.php
6262

63+
- name: Run PHPStan on packages
64+
run: |
65+
source .github/workflows/.utils.sh
66+
67+
# Run link script to make Bridge packages available
68+
./link
69+
70+
echo "$PACKAGES" | xargs -n1 | parallel -j +3 "_run_task {} '(cd src/{} && $COMPOSER_UP && $PHPSTAN)'"
71+
6372
- name: Link examples
6473
working-directory: examples
6574
run: ../link
@@ -72,12 +81,3 @@ jobs:
7281
- name: Run PHPStan on examples
7382
working-directory: examples
7483
run: $PHPSTAN
75-
76-
- name: Run PHPStan on packages
77-
run: |
78-
source .github/workflows/.utils.sh
79-
80-
# Run link script to make Bridge packages available
81-
./link
82-
83-
echo "$PACKAGES" | xargs -n1 | parallel -j +3 "_run_task {} '(cd src/{} && $COMPOSER_UP && $PHPSTAN)'"

0 commit comments

Comments
 (0)