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 9d728b3 commit 7c240dcCopy full SHA for 7c240dc
.github/workflows/code-quality.yaml
@@ -60,18 +60,13 @@ jobs:
60
- name: Build root packages
61
run: php .github/build-packages.php
62
63
- - name: Link examples
64
- working-directory: examples
65
- run: ../link
66
-
67
- - name: Install examples dependencies
68
- uses: ramsey/composer-install@v3
69
- with:
70
71
72
- name: Run PHPStan on examples
73
74
- run: $PHPSTAN
+ run: |
+ cd examples/ && $COMPOSER_UP && ../link && $PHPSTAN
+
+ - name: Run PHPStan on demo
+ cd demo/ && $COMPOSER_UP && ../link && $PHPSTAN
75
76
- name: Run PHPStan on demo
77
run: |
0 commit comments