generated from yii-tools/template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
fix(foxy): Update CI workflows and apply automated refactors. #115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
0cb469c
fix(foxy): Update CI workflows and apply automated refactors.
terabytesoftw b36422d
Apply fixes from StyleCI
terabytesoftw f736723
fix(foxy): Refactor constructors and interfaces for concise syntax.
terabytesoftw da959af
fix(JsonFormatter): Remove unnecessary array check in JSON decoding.
terabytesoftw afe3aa0
Apply fixed Coderrabitai review.
terabytesoftw f7af6df
fix(composer): Update composer/composer version constraint and add js…
terabytesoftw 5409c67
fix(mutation): Update hook to before-hook for mutation testing config…
terabytesoftw 55133e0
fix(tests): Update exception usage to ensure proper namespace referen…
terabytesoftw 9cdfd5a
fix(phpstan): Remove undefined property and method access errors from…
terabytesoftw 7f46db1
chore: Add actionlint configuration and update documentation formatting.
terabytesoftw 8e7524b
fix(tests): Enhance InternalMockerExtension to reset state on test co…
terabytesoftw 8f828d1
chore: Remove outdated community guidelines and templates from the re…
terabytesoftw 188ddf8
chore: Add .editorconfig-checker.json to manage file exclusions.
terabytesoftw 2567bf4
chore: Add .editorconfig-checker.json to manage file exclusions.
terabytesoftw 1c27eb5
chore: Add .editorconfig-checker.json to manage file exclusions.
terabytesoftw cd93049
Apply fixed Coderrabitai review.
terabytesoftw aba7c58
fix: Correct capitalization and formatting in documentation.
terabytesoftw 0229662
fix: Correct formatting in FAQs documentation.
terabytesoftw 15bc181
fix: Update .editorconfig-checker to exclude faqs.md from checks.
terabytesoftw 70f327b
fix: Correct capitalization of "Node.js" in FAQs documentation.
terabytesoftw 00d6540
Apply fixed Coderrabitai review.
terabytesoftw ddc9729
Apply fixed Coderrabitai review.
terabytesoftw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,8 @@ | ||
| { | ||
| "Exclude": [ | ||
| "phpstan-baseline.neon", | ||
| "resources/doc/faqs.md", | ||
| "tests/Json/JsonFileTest.php", | ||
| "tests/Json/JsonFormatterTest.php" | ||
| ] | ||
| } |
This file contains hidden or 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,6 @@ | ||
| --- | ||
| paths: | ||
| .github/workflows/**/*.yml: | ||
| ignore: | ||
| - '"pull_request" section is alias node but mapping node is expected' | ||
| - '"push" section is alias node but mapping node is expected' |
This file contains hidden or 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,33 +1,21 @@ | ||
| --- | ||
| on: | ||
| pull_request: | ||
| pull_request: &ignore-paths | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - 'README.md' | ||
| - 'CHANGELOG.md' | ||
| - '.gitignore' | ||
| - '.gitattributes' | ||
| - 'infection.json.dist' | ||
| - 'phpunit.xml.dist' | ||
| - 'psalm.xml' | ||
| - ".gitattributes" | ||
| - ".gitignore" | ||
| - "CHANGELOG.md" | ||
| - "docs/**" | ||
| - "README.md" | ||
|
|
||
| push: | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - 'README.md' | ||
| - 'CHANGELOG.md' | ||
| - '.gitignore' | ||
| - '.gitattributes' | ||
| - 'infection.json.dist' | ||
| - 'phpunit.xml.dist' | ||
| - 'psalm.xml' | ||
| push: *ignore-paths | ||
|
|
||
| name: Composer require checker | ||
|
|
||
| name: dependency-check | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
|
|
||
| jobs: | ||
| composer-require-checker: | ||
| uses: php-forge/actions/.github/workflows/composer-require-checker.yml@main | ||
| with: | ||
| os: >- | ||
| ['ubuntu-latest'] | ||
| php-version: >- | ||
| ['8.1'] | ||
| uses: yii2-framework/actions/.github/workflows/composer-require-checker.yml@main |
This file contains hidden or 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,34 +1,21 @@ | ||
| --- | ||
| on: | ||
| pull_request: | ||
| pull_request: &ignore-paths | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - 'README.md' | ||
| - 'CHANGELOG.md' | ||
| - '.gitignore' | ||
| - '.gitattributes' | ||
| - 'infection.json.dist' | ||
| - 'phpunit.xml.dist' | ||
| - ".gitattributes" | ||
| - ".gitignore" | ||
| - "CHANGELOG.md" | ||
| - "docs/**" | ||
| - "README.md" | ||
|
|
||
| push: | ||
| branches: ['main'] | ||
| paths-ignore: | ||
| - 'docs/**' | ||
| - 'README.md' | ||
| - 'CHANGELOG.md' | ||
| - '.gitignore' | ||
| - '.gitattributes' | ||
| - 'infection.json.dist' | ||
| - 'phpunit.xml.dist' | ||
| push: *ignore-paths | ||
|
|
||
| name: ecs | ||
|
|
||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
|
|
||
| jobs: | ||
| easy-coding-standard: | ||
| uses: php-forge/actions/.github/workflows/ecs.yml@main | ||
| secrets: | ||
| AUTH_TOKEN: ${{ secrets.AUTH_TOKEN }} | ||
| with: | ||
| os: >- | ||
| ['ubuntu-latest'] | ||
| php-version: >- | ||
| ['8.1'] | ||
| uses: yii2-framework/actions/.github/workflows/ecs.yml@main |
This file contains hidden or 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,17 @@ | ||
| --- | ||
| on: | ||
| - pull_request | ||
| - push | ||
|
|
||
| name: linter | ||
|
|
||
| permissions: | ||
| checks: write | ||
| contents: read | ||
| statuses: write | ||
|
|
||
| jobs: | ||
| linter: | ||
| uses: yii2-framework/actions/.github/workflows/super-linter.yml@v1 | ||
| secrets: | ||
| AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains hidden or 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,26 @@ | ||
| --- | ||
| on: | ||
| pull_request: &ignore-paths | ||
| paths-ignore: | ||
| - ".gitattributes" | ||
| - ".gitignore" | ||
| - "CHANGELOG.md" | ||
| - "docs/**" | ||
| - "README.md" | ||
|
|
||
| push: *ignore-paths | ||
|
|
||
| name: mutation test | ||
|
|
||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
|
|
||
| jobs: | ||
| mutation: | ||
| uses: yii2-framework/actions/.github/workflows/infection.yml@v1 | ||
| with: | ||
| before-hook: composer require infection/infection --dev --no-progress --no-suggest --prefer-dist | ||
| phpstan: true | ||
| secrets: | ||
| STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | ||
This file contains hidden or 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,21 @@ | ||
| --- | ||
| on: | ||
| pull_request: &ignore-paths | ||
| paths-ignore: | ||
| - ".gitattributes" | ||
| - ".gitignore" | ||
| - "CHANGELOG.md" | ||
| - "docs/**" | ||
| - "README.md" | ||
|
|
||
| push: *ignore-paths | ||
|
|
||
| name: static analysis | ||
|
|
||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
|
|
||
| jobs: | ||
| phpstan: | ||
| uses: yii2-framework/actions/.github/workflows/phpstan.yml@main |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.