Skip to content

Commit 1b8183c

Browse files
committed
Fix PHPStan examples workflow to run link script before composer update
The link script needs to run before composer update to ensure Bridge packages are properly symlinked and available to composer.
1 parent 96b7f92 commit 1b8183c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/code-quality.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262

6363
- name: Run PHPStan on examples
6464
run: |
65-
cd examples/ && $COMPOSER_UP && ../link && $PHPSTAN
65+
./link && cd examples/ && $COMPOSER_UP && $PHPSTAN
6666
6767
- name: Run PHPStan on packages
6868
run: |

0 commit comments

Comments
 (0)