aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel <mail@danielkesselberg.de>2021-10-03 20:17:31 +0200
committerGitHub <noreply@github.com>2021-10-03 20:17:31 +0200
commitc0d5e96ccee18522054953d68a4baa7c8c1f9148 (patch)
treebbe48cfede3facff416e4d6e773831394045149c
parent8b7ea9f62df9dc71352b9082cca2eb49d2c6e543 (diff)
parent050ba4b8d2d774e680b2375a4cf00f0e80b97ffb (diff)
downloadnextcloud-server-c0d5e96ccee18522054953d68a4baa7c8c1f9148.tar.gz
nextcloud-server-c0d5e96ccee18522054953d68a4baa7c8c1f9148.zip
Merge pull request #29046 from nextcloud/backport/29044/stable22
[stable22] Change output format of Psalm to Github
-rw-r--r--.github/workflows/static-code-analysis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml
index fb415b585ec..0a2df0d71f9 100644
--- a/.github/workflows/static-code-analysis.yml
+++ b/.github/workflows/static-code-analysis.yml
@@ -22,7 +22,7 @@ jobs:
- name: Composer install
run: composer i
- name: Psalm
- run: composer run psalm -- --monochrome --no-progress --output-format=text --update-baseline || ( git diff -- . ':!lib/composer' && exit 1 )
+ run: composer run psalm -- --monochrome --no-progress --output-format=github --update-baseline || ( git diff -- . ':!lib/composer' && exit 1 )
- name: Check diff
run: git diff -- . ':!lib/composer'
- name: Show potential changes in Psalm baseline
@@ -48,7 +48,7 @@ jobs:
- name: Composer install
run: composer i
- name: Psalm
- run: composer run psalm -- -c psalm-ocp.xml --monochrome --no-progress --output-format=text --update-baseline || ( git diff -- . ':!lib/composer' && exit 1 )
+ run: composer run psalm -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline || ( git diff -- . ':!lib/composer' && exit 1 )
- name: Check diff
run: git diff -- . ':!lib/composer'
- name: Show potential changes in Psalm baseline