We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0361155 commit 53c92c4Copy full SHA for 53c92c4
1 file changed
.github/workflows/php.yml
@@ -165,6 +165,7 @@ jobs:
165
166
steps:
167
- name: Setup PHP, with composer and extensions
168
+ id: setup-php
169
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
170
with:
171
php-version: '8.0'
@@ -204,8 +205,8 @@ jobs:
204
205
206
- name: Psalm
207
continue-on-error: true
- run: php vendor/bin/psalm --show-info=true --shepherd
208
+ run: php vendor/bin/psalm --show-info=true --shepherd --php-version=${{ steps.setup-php.outputs.php-version }}
209
210
- name: Psalter
211
- run: php vendor/bin/psalter --issues=UnnecessaryVarAnnotation --dry-run
212
+ run: php vendor/bin/psalter --issues=UnnecessaryVarAnnotation --dry-run --php-version=${{ steps.setup-php.outputs.php-version }}
0 commit comments