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

github.com/nextcloud/logreader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-09-22 14:22:29 +0300
committerCarl Schwan <carl@carlschwan.eu>2022-09-22 14:22:29 +0300
commitd2c9ff63d500a1ed1a3e959d56bb419e59e88bc5 (patch)
treeede0afb0bcd6fd134f8fc7c7eb0408919aa80ac7
parent3a6d607b99f51e94881cac5c1227a7ddde24061c (diff)
Update static analysis workflowupdate-stable25-target-versions
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
-rw-r--r--.github/workflows/static-analysis.yml44
1 files changed, 23 insertions, 21 deletions
diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml
index 9e36943..7dc1b16 100644
--- a/.github/workflows/static-analysis.yml
+++ b/.github/workflows/static-analysis.yml
@@ -1,4 +1,4 @@
-name: Php Static analysis
+name: Static analysis
on:
pull_request:
@@ -9,23 +9,25 @@ on:
jobs:
static-psalm-analysis:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- ocp-version: [ 'dev-stable25' ]
- name: Nextcloud ${{ matrix.ocp-version }}
- steps:
- - name: Checkout
- uses: actions/checkout@master
- - name: Set up php
- uses: shivammathur/setup-php@master
- with:
- php-version: 7.4
- tools: composer:v1
- coverage: none
- - name: Install dependencies
- run: composer i
- - name: Install dependencies
- run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
- - name: Run coding standards check
- run: composer run psalm
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ ocp-version: [ 'dev-stable25' ]
+
+ name: Nextcloud ${{ matrix.ocp-version }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@master
+
+ - name: Set up php
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: 7.4
+ coverage: none
+
+ - name: Install dependencies
+ run: composer install --dev
+
+ - name: Run coding standards check
+ run: composer run psalm