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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-10-13 14:04:06 +0300
committerJoas Schilling <coding@schilljs.com>2020-10-13 14:04:06 +0300
commit8967bb9153c48393b032420d93955cea2b6c1a58 (patch)
treed36a29c9f1abf2d3e0a8e5970711c947b4a07ce5 /.github
parente679285b59dab250fe62dc7ae9257a12e22f6202 (diff)
Fix intendation
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/psalm.yml22
1 files changed, 14 insertions, 8 deletions
diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml
index 6429dab6a..1d62fe4ac 100644
--- a/.github/workflows/psalm.yml
+++ b/.github/workflows/psalm.yml
@@ -10,21 +10,27 @@ on:
jobs:
static-psalm-analysis:
runs-on: ubuntu-latest
+
strategy:
matrix:
ocp-version: [ 'dev-master' ]
+
name: Nextcloud ${{ matrix.ocp-version }}
steps:
- name: Checkout
- uses: actions/checkout@master
+ uses: actions/checkout@master
+
- name: Set up php
- uses: shivammathur/setup-php@master
- with:
- php-version: 7.4
- coverage: none
+ uses: shivammathur/setup-php@master
+ with:
+ php-version: 7.4
+ coverage: none
+
- name: Install dependencies
- run: composer i
+ run: composer i
+
- name: Install dependencies
- run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
+ run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
+
- name: Run coding standards check
- run: composer run psalm
+ run: composer run psalm