mirror of
https://github.com/nextcloud/server.git
synced 2026-04-05 00:56:16 -04:00
Better psalm CI output
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
fedf9c69d9
commit
4db7829f43
1 changed files with 2 additions and 2 deletions
4
.github/workflows/static-code-analysis.yml
vendored
4
.github/workflows/static-code-analysis.yml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
|||
- name: Psalm
|
||||
uses: docker://jakzal/phpqa:php7.4-alpine
|
||||
with:
|
||||
args: psalm --monochrome --no-progress --output-format=text --update-baseline
|
||||
args: psalm --monochrome --no-progress --output-format=text --update-baseline || ( git diff && exit 1 )
|
||||
- name: Check for changes in Psalm baseline
|
||||
run: |
|
||||
bash -c "[[ ! \"`git status --porcelain build/psalm-baseline.xml`\" ]] || ( echo 'Uncommited changes in Psalm baseline' && git status && git diff && exit 1 )"
|
||||
bash -c "[[ ! \"`git status --porcelain build/psalm-baseline.xml`\" ]] || ( echo 'Uncommited changes in Psalm baseline' && git status && git diff build/psalm-baseline.xml && exit 1 )"
|
||||
|
|
|
|||
Loading…
Reference in a new issue