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

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-12-29 11:44:40 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-12-29 12:04:20 +0300
commit2d20e4c37de724f6c95cf7cb487e34d1645bb6ae (patch)
tree36491adc9f661d7450bcc572052183eb5021e9c0 /.github
parent87e241a60b12cff07e3b3b50317a968b3667610f (diff)
Drop php7.2 and add the nextcloud coding standard
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml95
1 files changed, 74 insertions, 21 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index a36057f..521ec88 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -1,36 +1,89 @@
name: Lint
-
-on: [push]
+on: push
jobs:
+ xml-linters:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@master
+ - name: Download schema
+ run: wget https://apps.nextcloud.com/schema/apps/info.xsd
+ - name: Lint info.xml
+ uses: ChristophWurst/xmllint-action@v1
+ with:
+ xml-file: ./appinfo/info.xml
+ xml-schema-file: ./info.xsd
+
php-linters:
runs-on: ubuntu-latest
strategy:
matrix:
- php-versions: ['7.2', '7.3', '7.4']
+ php-versions: [ 7.2, 7.3, 7.4 ]
name: php${{ matrix.php-versions }} lint
steps:
- - name: Checkout
- uses: actions/checkout@master
- - name: Set up php${{ matrix.php-versions }}
- uses: shivammathur/setup-php@master
- with:
- php-version: ${{ matrix.php-versions }}
- coverage: none
- - name: Lint
- run: composer run lint
+ - name: Checkout
+ uses: actions/checkout@master
+ - name: Set up php${{ matrix.php-versions }}
+ uses: shivammathur/setup-php@master
+ with:
+ php-version: ${{ matrix.php-versions }}
+ coverage: none
+ - name: Lint
+ run: composer run lint
+
+ php-cs-fixer:
+ name: php-cs check
+ runs-on: ubuntu-latest
+ 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: Run coding standards check
+ run: composer run cs:check
+
+ app-code-check:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ nextcloud-versions: [ 'master' ]
+ name: Nextcloud ${{ matrix.nextcloud-versions }} app code check
+ steps:
+ - name: Set up php7.4
+ uses: shivammathur/setup-php@master
+ with:
+ php-version: 7.4
+ extensions: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip
+ - name: Checkout Nextcloud
+ run: git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b ${{ matrix.nextcloud-versions }} nextcloud
+ - name: Run tests
+ run: php -f nextcloud/occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database sqlite --database-pass=''
+ - name: Checkout
+ uses: actions/checkout@master
+ with:
+ path: nextcloud/apps/twofactor_totp
+ - name: Run tests
+ run: php -f nextcloud/occ app:check-code twofactor_totp
+
node-linters:
runs-on: ubuntu-latest
name: ESLint
steps:
- - uses: actions/checkout@master
- - name: Set up Node
- uses: actions/setup-node@v1
- with:
- node-version: 12.x
- - name: npm install
- run: npm ci
- - name: eslint
- run: npm run lint
+ - uses: actions/checkout@master
+ - name: Set up Node
+ uses: actions/setup-node@v1
+ with:
+ node-version: 12.x
+ - name: npm install
+ run: npm ci
+ - name: eslint
+ run: npm run lint
env:
CI: true