Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_downloadactivity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-04-06 11:29:45 +0300
committerJoas Schilling <coding@schilljs.com>2022-04-06 11:29:45 +0300
commit988838b80baa5796b848e7bd0544e6900a6ed8ac (patch)
treeed3a0c630bd5c6c5b920c1d995170c769dbf2a14
parent33c3f30d9b630a9e9aac03d85f6705db0def9038 (diff)
Add psalm summary
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.github/workflows/static-analysis.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml
index 4c9f26e..dba8d7c 100644
--- a/.github/workflows/static-analysis.yml
+++ b/.github/workflows/static-analysis.yml
@@ -24,3 +24,15 @@ jobs:
run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
- name: Run coding standards check
run: composer run psalm
+
+ summary:
+ runs-on: ubuntu-latest
+ needs: static-psalm-analysis
+
+ if: always()
+
+ name: static-psalm-analysis-summary
+
+ steps:
+ - name: Summary status
+ run: if ${{ needs.static-psalm-analysis.result != 'success' }}; then exit 1; fi