This commit is contained in:
dartcafe 2020-09-03 08:23:56 +02:00
Родитель 9692c26695
Коммит c8031f8576
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CCE73CEF3035D3C8
4 изменённых файлов: 75 добавлений и 4 удалений

51
.github/workflows/lint.yml поставляемый
Просмотреть файл

@ -3,12 +3,56 @@ name: Lint
on:
pull_request:
push:
branches:
- master
- stable*
# branches:
# - master
# - stable*
jobs:
php-cs-fixer:
name: php-cs check
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [7.4]
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up php
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-version }}
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
coverage: xdebug
- 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/mail
- name: Run tests
run: php -f nextcloud/occ app:check-code mail
node:
name: eslint
runs-on: ubuntu-latest
strategy:
@ -27,6 +71,7 @@ jobs:
run: npm run lint
stylelint:
name: stylint
runs-on: ubuntu-latest
strategy:

1
.php_cs.cache Normal file

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

20
.php_cs.dist Normal file
Просмотреть файл

@ -0,0 +1,20 @@
<?php
declare(strict_types=1);
require_once './vendor/autoload.php';
use Nextcloud\CodingStandard\Config;
$config = new Config();
$config
->getFinder()
->ignoreVCSIgnored(true)
->notPath('build')
->notPath('l10n')
->notPath('lib/Vendor')
->notPath('src')
->notPath('vendor')
->notPath('tests')
->in(__DIR__);
return $config;

Просмотреть файл

@ -27,6 +27,11 @@
"christophwurst/nextcloud": "^18.0",
"phpunit/phpunit": "^8.2",
"league/factory-muffin": "^3.0",
"league/factory-muffin-faker": "^2.0"
"league/factory-muffin-faker": "^2.0",
"nextcloud/coding-standard": "^0.3.0"
},
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix"
}
}