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

github.com/nextcloud/survey_client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-04-08 18:20:33 +0300
committerJoas Schilling <coding@schilljs.com>2022-04-08 18:20:33 +0300
commitf0ce06ca1a73bd41f09b294dbbe51072a9f2e302 (patch)
treea087e1f694be58ea662f3f0b06a3fe2e3277d6de /.github
parent410d2e4615e95360da9a8fefc8bbec1c68dc4668 (diff)
Add a summary for status checking
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/static-analysis.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml
index 4f40268..3458d0e 100644
--- a/.github/workflows/static-analysis.yml
+++ b/.github/workflows/static-analysis.yml
@@ -24,3 +24,16 @@ 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' && needs.static-psalm-analysis.result != 'skipped' }}; then exit 1; fi
+