diff options
author | Daniel <mail@danielkesselberg.de> | 2024-09-30 19:00:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-30 19:00:04 +0200 |
commit | 1fff4e10ce224cfc41f112693800c39ba25bd411 (patch) | |
tree | 3c681ce6698c5ef3ae712081b7a82da781f7e302 | |
parent | ced915a3b16c6498bb611e951101cb554a3547ef (diff) | |
parent | 077ed74a12630e72756067963212d7b97f00117e (diff) | |
download | nextcloud-server-1fff4e10ce224cfc41f112693800c39ba25bd411.tar.gz nextcloud-server-1fff4e10ce224cfc41f112693800c39ba25bd411.zip |
Merge pull request #48466 from nextcloud/ci/noid/require-up-to-date-psalm-paseline
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' |