Skip to content

Commit

Permalink
Merge pull request #350 from khalwat/develop
Browse files Browse the repository at this point in the history
Run code analysis automatically via GitHub Action
  • Loading branch information
bencroker authored Feb 8, 2024
2 parents 850bf29 + e2cee6f commit dfcc5d9
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 3 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/code-analysis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Code Analysis

on:
pull_request: null
push:
branches:
- develop
workflow_dispatch:
permissions:
contents: read
jobs:
code_analysis:
strategy:
fail-fast: false
matrix:
actions:
- name: 'PHPStan'
run: composer phpstan
- name: 'Coding Standards'
run: composer fix-cs
# Tests could be run here too, just set the environment variables as needed, see:
# https://docs.github.com/en/actions/learn-github-actions/variables
# - name: 'Tests'
# run: composer test
name: ${{ matrix.actions.name }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- name: Setup PHP
id: setup-php
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
extensions: 'ctype,curl,dom,iconv,imagick,intl,json,mbstring,openssl,pcre,pdo,reflection,spl,zip'
ini-values: post_max_size=256M, max_execution_time=180, memory_limit=512M
tools: composer:v2
- name: Install Composer dependencies
run: composer install --no-interaction --no-ansi --no-progress
- run: ${{ matrix.actions.run }}
17 changes: 17 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,28 @@
"nystudio107/craft-code-editor": "^1.0.0",
"putyourlightson/craft-sprig-core": "^2.6.4"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main"
},
"scripts": {
"phpstan": "phpstan --ansi --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi"
},
"autoload": {
"psr-4": {
"putyourlightson\\sprig\\plugin\\": "src/"
}
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"support": {
"docs": "https://putyourlightson.com/plugins/sprig",
"source": "https://github.com/putyourlightson/craft-sprig",
Expand Down
3 changes: 1 addition & 2 deletions ecs.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
use Symplify\EasyCodingStandard\Config\ECSConfig;

return static function(ECSConfig $ecsConfig): void {
$ecsConfig->parallel();
$ecsConfig->paths([
__DIR__ . '/src',
__FILE__,
]);

$ecsConfig->parallel();
$ecsConfig->sets([SetList::CRAFT_CMS_4]);
};
3 changes: 2 additions & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
includes:
- %currentWorkingDirectory%/vendor/craftcms/phpstan/phpstan.neon
- vendor/craftcms/phpstan/phpstan.neon

parameters:
level: 5
paths:
Expand Down

0 comments on commit dfcc5d9

Please sign in to comment.