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 d9ab69f commit 78b9e32Copy full SHA for 78b9e32
.github/workflows/php-static-analysis.yml
@@ -63,4 +63,7 @@ jobs:
63
64
- name: Run PHPStan
65
if: steps.changed-files.outputs.all_changed_files != ''
66
- run: ./vendor/bin/phpstan analyse ${{ inputs.PHPSTAN_ARGS }} ${{ join(steps.changed-files.outputs.all_changed_files, ' ') }} | cs2pr
+ run: |
67
+ ./vendor/bin/phpstan analyse ${{ inputs.PHPSTAN_ARGS }} ${{ steps.changed-files.outputs.all_changed_files }} \
68
+ | sed 's|name="|name="${{ inputs.WORKING_DIRECTORY }}/|g' \
69
+ | cs2pr
0 commit comments