diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-16 14:50:32 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-20 11:22:13 +0100 |
commit | d2204a71c69649f3fb2c1a6cabb861c2519b81bb (patch) | |
tree | 4cb28e6516757038686543576b397de0017aa3f2 /.github | |
parent | 83d2655844bee93ee605333e11373c2a6f6fea5d (diff) | |
download | nextcloud-server-d2204a71c69649f3fb2c1a6cabb861c2519b81bb.tar.gz nextcloud-server-d2204a71c69649f3fb2c1a6cabb861c2519b81bb.zip |
Always show the psalm baseline change, even on failure
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/static-code-analysis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index dbe3dce3e15..d4b5a8847ce 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -29,6 +29,7 @@ jobs: run: composer run psalm -- --monochrome --no-progress --output-format=github --update-baseline --report=results.sarif - name: Show potential changes in Psalm baseline + if: always() run: git diff -- . ':!lib/composer' - name: Upload Analysis results to GitHub @@ -90,4 +91,5 @@ jobs: run: composer run psalm -- -c psalm-ocp.xml --monochrome --no-progress --output-format=github --update-baseline - name: Show potential changes in Psalm baseline + if: always() run: git diff -- . ':!lib/composer' |