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

github.com/nextcloud/files_pdfviewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2022-01-19 19:57:41 +0300
committerGitHub <noreply@github.com>2022-01-19 19:57:41 +0300
commit3691bb9ea8561999939f269a8c7ebb00d367675c (patch)
treef375523353f5024c8b3b017f1831855de12d9033
parent10348f8c5689e26ddbc2a7d64c7e2284a37c9c88 (diff)
parentc8fd35cf0ad87839e21f2207c9fe7f55c35f5832 (diff)
Merge pull request #551 from nextcloud/backport/548/stable21v21.0.9rc1v21.0.9v21.0.8rc3v21.0.8
-rw-r--r--.github/workflows/lint-php.yml16
1 files changed, 14 insertions, 2 deletions
diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml
index 3e8bac9..45493c3 100644
--- a/.github/workflows/lint-php.yml
+++ b/.github/workflows/lint-php.yml
@@ -13,13 +13,13 @@ on:
- stable*
jobs:
- lint:
+ php-lint:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ["7.3", "7.4", "8.0"]
- name: php
+ name: php-lint
steps:
- name: Checkout
@@ -33,3 +33,15 @@ jobs:
- name: Lint
run: composer run lint
+
+ summary:
+ runs-on: ubuntu-latest
+ needs: php-lint
+
+ if: always()
+
+ name: php-lint-summary
+
+ steps:
+ - name: Summary status
+ run: if ${{ needs.php-lint.result != 'success' && needs.php-lint.result != 'skipped' }}; then exit 1; fi