diff options
author | Daniel <mail@danielkesselberg.de> | 2024-09-30 22:32:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-30 22:32:27 +0200 |
commit | 6560e3aa6c075df6ba570e25e9f5298ce9202c40 (patch) | |
tree | e241e32bbd124147e613114ff4c45f7de09fecd9 | |
parent | 2bc11653e42de67c9f51eea00aa27f9c9f2e2d0a (diff) | |
parent | 64ff9cd2f326c808ecbf17f90f0f7e2368641fe7 (diff) | |
download | nextcloud-server-6560e3aa6c075df6ba570e25e9f5298ce9202c40.tar.gz nextcloud-server-6560e3aa6c075df6ba570e25e9f5298ce9202c40.zip |
Merge pull request #48469 from nextcloud/backport/48466/stable30
[stable30] ci: fail psalm when baseline update required
-rw-r--r-- | .github/workflows/static-code-analysis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index 63b7e947abd..83b7452ee89 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -38,7 +38,7 @@ jobs: - name: Show potential changes in Psalm baseline if: always() - run: git diff -- . ':!lib/composer' + run: git diff --exit-code -- . ':!lib/composer' - name: Upload Analysis results to GitHub if: always() @@ -100,4 +100,4 @@ jobs: - name: Show potential changes in Psalm baseline if: always() - run: git diff -- . ':!lib/composer' + run: git diff --exit-code -- . ':!lib/composer' |