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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ncp-previewgenerator/ncp-previewgenerator-nc21/.github/workflows/lint.yml')
-rw-r--r--ncp-previewgenerator/ncp-previewgenerator-nc21/.github/workflows/lint.yml54
1 files changed, 54 insertions, 0 deletions
diff --git a/ncp-previewgenerator/ncp-previewgenerator-nc21/.github/workflows/lint.yml b/ncp-previewgenerator/ncp-previewgenerator-nc21/.github/workflows/lint.yml
new file mode 100644
index 00000000..97ea55a7
--- /dev/null
+++ b/ncp-previewgenerator/ncp-previewgenerator-nc21/.github/workflows/lint.yml
@@ -0,0 +1,54 @@
+name: Lint
+
+on:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable*
+
+jobs:
+ php:
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ php-versions: ['7.3', '7.4', '8.0']
+
+ name: php${{ matrix.php-versions }}
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Set up php ${{ matrix.php-versions }}
+ uses: shivammathur/setup-php@v1
+ with:
+ php-version: ${{ matrix.php-versions }}
+ coverage: none
+
+ - name: Lint
+ run: composer run lint
+
+ php-cs-fixer:
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ php-versions: ['7.4']
+
+ name: cs php${{ matrix.php-versions }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@master
+
+ - name: Set up php
+ uses: shivammathur/setup-php@master
+ with:
+ php-version: ${{ matrix.php-versions }}
+ coverage: none
+
+ - name: Install dependencies
+ run: composer i
+
+ - name: Run coding standards check
+ run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 )
+