File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 6262
6363 -
6464 name : Run analysis
65- run : |
66- ${{ matrix.executable || 'vendor/bin/phpstan' }} analyse ${{ matrix.args }} -vvv --ansi --error-format=prettyJson | \
67- jq -e '.files[] | .messages[] | select(.identifier | test("^shipmonk\\.dead"))' && exit 1 || exit 0
65+ continue-on-error : true
66+ run : ${{ matrix.executable || 'vendor/bin/phpstan' }} analyse ${{ matrix.args }} -vvv --ansi --error-format=prettyJson > /tmp/phpstan-output.json
67+
68+ -
69+ name : Check for internal errors
70+ run : jq -e '.errors[]' /tmp/phpstan-output.json && exit 1 || exit 0
71+
72+ -
73+ name : Check for dead code errors
74+ run : jq -e '.files[] | .messages[] | select(.identifier | test("^shipmonk\\.dead"))' /tmp/phpstan-output.json && exit 1 || exit 0
You can’t perform that action at this time.
0 commit comments