-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/install-elastic
- Loading branch information
Showing
9 changed files
with
137 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# ==== Commit Messages ==== | ||
|
||
# ==== Commit Messages(Template) ==== | ||
# <type>: <subject> | ||
# fix: Fixed a bug in the code | ||
# hotfix: Fixed a critical bug in the code | ||
# feat: Added new feature | ||
# docs: Added documentation | ||
# style: Updated code style | ||
# refactor(clean,improve): Cleaned up code, improved code quality | ||
# test: Added tests | ||
# chore: Updated build tasks, package manager configs, etc | ||
# | ||
# ==== Emojis ==== | ||
# 🐛 :bug: Bug fix | ||
# 👍 :+1: Functionality improvement | ||
# ✨ :sparkles: Partial feature addition | ||
# 🎨 :art: Design change only | ||
# 💢 :anger: Conflict | ||
# 🚧 :construction: WIP | ||
# 📝 :memo: Wording correction | ||
# ♻️ :recycle: Refactoring | ||
# 🔥 :fire: Removal of unnecessary and unused features | ||
# 💚 :green_heart: Test and CI corrections and improvements | ||
# 👕 :shirt: Lint error corrections and code style corrections | ||
# 🚀 :rocket: Performance improvement | ||
# 🆙 :up: Update of dependent packages, etc. | ||
# 👮 :cop: Security-related improvements | ||
# ⚙ :gear: Config change | ||
# 📚 :books: Documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## Summary | ||
<!-- Describe why you made changes and the changes, including screenshots if necessary. What did you do with this pull request? --> | ||
|
||
## Unit Testing | ||
<!-- List your unit/integration tests here, or if there are no unit tests, please explain why. --> | ||
|
||
## Operation check | ||
<!-- URL of checklist, etc. --> | ||
|
||
> [!CAUTION] | ||
> ### Release Notes | ||
> <!-- * Information if you need to manually configure something at release time --> | ||
> <!-- * Commands to run after release, etc. --> | ||
> * | ||
> [!NOTE] | ||
> ### Additional Notes | ||
> <!-- * Reference information for reviewers (if there are any implementation concerns or points of note, please state them) --> | ||
> * | ||
## Checklist | ||
* [ ] Code follows our Coding Standards. | ||
* [ ] Code matches the confirmed solution in the ticket. | ||
* [ ] Unit/Integration tests have been added or updated. | ||
* [ ] Env/Config/DB changes were confirmed by @cslant/admin. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Setup & test | ||
|
||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
tests: | ||
name: Composer P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest ] | ||
php: [ '8.1', '8.2', '8.3' ] | ||
laravel: [ 11.*, 10.*, 9.* ] | ||
include: | ||
- laravel: 11.* | ||
testbench: 9.* | ||
- laravel: 10.* | ||
testbench: 8.* | ||
- laravel: 9.* | ||
testbench: 8.* | ||
exclude: | ||
- laravel: 11.* | ||
php: 8.1 | ||
steps: | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: | | ||
composer install --no-interaction --no-progress --no-suggest | ||
- name: Run tests | ||
run: | | ||
composer validate --strict |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
# blog-core | ||
# blog-core | ||
|
||
## commit template | ||
```bash | ||
git config --local commit.template .github/commit_message.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: PHPStan | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
phpstan: | ||
runs-on: ${{ matrix.os }} | ||
name: PHPStan - P${{ matrix.php }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest ] | ||
php: [ '8.1', '8.2', '8.3' ] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: | | ||
composer install --no-interaction --no-progress --no-suggest | ||
- name: Run PHPStan | ||
run: | | ||
composer analyse --error-format=github |