Skip to content
This repository was archived by the owner on Jan 15, 2024. It is now read-only.

Commit c19f7fe

Browse files
committed
feat: add some workflow
1 parent 0513bbe commit c19f7fe

10 files changed

+216
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Dependabot auto-merge
2+
on: pull_request_target
3+
4+
permissions:
5+
pull-requests: write
6+
contents: write
7+
8+
jobs:
9+
dependabot:
10+
runs-on: ubuntu-latest
11+
if: ${{ github.actor == 'dependabot[bot]' }}
12+
steps:
13+
14+
- name: Dependabot metadata
15+
id: metadata
16+
uses: dependabot/[email protected]
17+
with:
18+
github-token: "${{ secrets.GITHUB_TOKEN }}"
19+
20+
- name: Auto-merge Dependabot PRs for semver-major updates
21+
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
22+
run: gh pr merge --auto --merge "$PR_URL"
23+
env:
24+
PR_URL: ${{github.event.pull_request.html_url}}
25+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
26+
27+
- name: Auto-merge Dependabot PRs for semver-patch updates
28+
if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
29+
run: gh pr merge --auto --merge "$PR_URL"
30+
env:
31+
PR_URL: ${{github.event.pull_request.html_url}}
32+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

.github/workflows/php-cs-fixer.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Check & fix styling
2+
3+
on: [push]
4+
5+
permissions:
6+
contents: write
7+
8+
jobs:
9+
php-cs-fixer:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
with:
16+
ref: ${{ github.head_ref }}
17+
18+
- name: Run PHP CS Fixer
19+
uses: docker://oskarstark/php-cs-fixer-ga
20+
with:
21+
args: --config=.php-cs-fixer.dist.php --allow-risky=yes
22+
23+
- name: Commit changes
24+
uses: stefanzweifel/git-auto-commit-action@v5
25+
with:
26+
commit_message: Fix styling

.github/workflows/phpstan.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: PHPStan
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
phpstan:
7+
runs-on: ${{ matrix.os }}
8+
name: PHPStan - P${{ matrix.php }}
9+
10+
strategy:
11+
matrix:
12+
os: [ ubuntu-latest ]
13+
php: [ '8.1', '8.2', '8.3' ]
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- name: Setup PHP
19+
uses: shivammathur/[email protected]
20+
with:
21+
php-version: ${{ matrix.php }}
22+
23+
- name: Checkout code
24+
uses: actions/checkout@v4
25+
26+
- name: Install dependencies
27+
run: |
28+
composer install --no-interaction --no-progress --no-suggest
29+
30+
- name: Run PHPStan
31+
run: |
32+
composer analyse --error-format=github

.github/workflows/setup_test.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Setup & test
2+
3+
on: [ push, pull_request ]
4+
5+
jobs:
6+
tests:
7+
name: Composer P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [ ubuntu-latest ]
12+
php: [ '8.1', '8.2', '8.3' ]
13+
laravel: [ 10.*, 9.* ]
14+
include:
15+
- laravel: 10.*
16+
testbench: 8.*
17+
- laravel: 9.*
18+
testbench: 8.*
19+
steps:
20+
- name: Setup PHP
21+
uses: shivammathur/setup-php@v2
22+
with:
23+
php-version: ${{ matrix.php }}
24+
25+
- name: Checkout code
26+
uses: actions/checkout@v4
27+
28+
- name: Install dependencies
29+
run: |
30+
composer install --no-interaction --no-progress --no-suggest
31+
32+
- name: Run tests
33+
run: |
34+
composer validate --strict
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Update Changelog
2+
3+
on:
4+
release:
5+
types: [released]
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
update:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
with:
18+
ref: main
19+
20+
- name: Update Changelog
21+
uses: stefanzweifel/changelog-updater-action@v1
22+
with:
23+
latest-version: ${{ github.event.release.name }}
24+
release-notes: ${{ github.event.release.body }}
25+
26+
- name: Commit updated CHANGELOG
27+
uses: stefanzweifel/git-auto-commit-action@v5
28+
with:
29+
branch: main
30+
commit_message: Update CHANGELOG
31+
file_pattern: CHANGELOG.md

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,8 @@ npm-debug.log
2929

3030
package-lock.json
3131
yarn.lock
32-
/.sass-cache
32+
/.sass-cache
33+
34+
build
35+
.php-cs-fixer.cache
36+
storage

.php-cs-fixer.dist.php

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?php
2+
3+
$finder = Symfony\Component\Finder\Finder::create()
4+
->in([
5+
__DIR__ . '/src',
6+
__DIR__ . '/tests',
7+
__DIR__ . '/routes',
8+
__DIR__ . '/resources',
9+
])
10+
->name('*.php')
11+
->ignoreDotFiles(true)
12+
->ignoreVCS(true);
13+
14+
return (new PhpCsFixer\Config())
15+
->setRules([
16+
'@PSR12' => true,
17+
'array_syntax' => ['syntax' => 'short'],
18+
'ordered_imports' => ['sort_algorithm' => 'alpha'],
19+
'no_unused_imports' => true,
20+
'trailing_comma_in_multiline' => true,
21+
'phpdoc_scalar' => true,
22+
'unary_operator_spaces' => true,
23+
'binary_operator_spaces' => true,
24+
'blank_line_before_statement' => [
25+
'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'],
26+
],
27+
'phpdoc_single_line_var_spacing' => true,
28+
'phpdoc_var_without_name' => true,
29+
'class_attributes_separation' => [
30+
'elements' => [
31+
'method' => 'one',
32+
],
33+
],
34+
'method_argument_space' => [
35+
'on_multiline' => 'ensure_fully_multiline',
36+
'keep_multiple_spaces_after_comma' => true,
37+
],
38+
'single_trait_insert_per_statement' => true,
39+
])
40+
->setFinder($finder);

composer.json

+4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@
5555
"phpstan/phpstan-deprecation-rules": "^1.1",
5656
"phpstan/phpstan-phpunit": "^1.3"
5757
},
58+
"scripts": {
59+
"analyse": "vendor/bin/phpstan analyse",
60+
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
61+
},
5862
"support": {
5963
"issues": "https://github.com/cslant/laravel-generator/issues"
6064
},

phpstan-baseline.neon

Whitespace-only changes.

phpstan.neon.dist

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
includes:
2+
- phpstan-baseline.neon
3+
4+
parameters:
5+
level: 9
6+
paths:
7+
- src
8+
- routes
9+
tmpDir: build/phpstan
10+
checkOctaneCompatibility: true
11+
checkModelProperties: true
12+
checkMissingIterableValueType: false

0 commit comments

Comments
 (0)