-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/master' into new-frontend
# Conflicts: # src/Module/Profiler/Struct/Profile.php
- Loading branch information
Showing
58 changed files
with
1,009 additions
and
804 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 |
---|---|---|
|
@@ -124,73 +124,6 @@ jobs: | |
run: .phive/composer-normalize --ansi --dry-run | ||
|
||
coding-standards: | ||
timeout-minutes: 4 | ||
runs-on: ${{ matrix.os }} | ||
concurrency: | ||
cancel-in-progress: true | ||
group: coding-standards-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
php-version: | ||
- '8.1' | ||
dependencies: | ||
- locked | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: ⚙️ Set git to use LF line endings | ||
run: | | ||
git config --global core.autocrlf false | ||
git config --global core.eol lf | ||
- name: 🛠️ Setup PHP | ||
uses: shivammathur/[email protected] | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
extensions: none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, sockets | ||
ini-values: error_reporting=E_ALL | ||
coverage: none | ||
|
||
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
||
- name: 🛠️ Setup problem matchers | ||
run: | | ||
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | ||
- name: 🤖 Validate composer.json and composer.lock | ||
run: composer validate --ansi --strict | ||
|
||
- name: 🔍 Get composer cache directory | ||
uses: wayofdev/gh-actions/actions/composer/[email protected] | ||
|
||
- name: ♻️ Restore cached dependencies installed with composer | ||
uses: actions/[email protected] | ||
with: | ||
path: ${{ env.COMPOSER_CACHE_DIR }} | ||
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }} | ||
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}- | ||
|
||
- name: 📥 Install "${{ matrix.dependencies }}" dependencies with composer | ||
uses: wayofdev/gh-actions/actions/composer/[email protected] | ||
with: | ||
dependencies: ${{ matrix.dependencies }} | ||
|
||
- name: 🛠️ Prepare environment | ||
run: make prepare | ||
|
||
- name: 🚨 Run coding standards task | ||
run: composer cs:fix | ||
env: | ||
PHP_CS_FIXER_IGNORE_ENV: true | ||
|
||
- name: 📤 Commit and push changed files back to GitHub | ||
uses: stefanzweifel/[email protected] | ||
with: | ||
commit_message: 'style(php-cs-fixer): lint php files and fix coding standards' | ||
branch: ${{ github.head_ref }} | ||
commit_author: 'github-actions <[email protected]>' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
uses: spiral/gh-actions/.github/workflows/cs-fix.yml@master |
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,67 @@ | ||
--- | ||
|
||
on: # yamllint disable-line rule:truthy | ||
pull_request: | ||
paths: | ||
- 'src/**' | ||
- 'tests/**' | ||
- 'composer.*' | ||
push: | ||
paths: | ||
- 'src/**' | ||
- 'tests/**' | ||
- 'composer.*' | ||
|
||
name: ⚙️ Refactoring | ||
|
||
jobs: | ||
rector: | ||
timeout-minutes: 4 | ||
runs-on: ${{ matrix.os }} | ||
concurrency: | ||
cancel-in-progress: true | ||
group: rector-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
php-version: | ||
- '8.2' | ||
dependencies: | ||
- locked | ||
steps: | ||
- name: 📦 Check out the codebase | ||
uses: actions/[email protected] | ||
|
||
- name: 🛠️ Setup PHP | ||
uses: shivammathur/[email protected] | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
extensions: none, ctype, curl, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, sockets, opcache, pcntl, posix | ||
ini-values: error_reporting=E_ALL | ||
coverage: none | ||
|
||
- name: 🛠️ Setup problem matchers | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" | ||
|
||
- name: 🤖 Validate composer.json and composer.lock | ||
run: composer validate --ansi --strict | ||
|
||
- name: 🔍 Get composer cache directory | ||
uses: wayofdev/gh-actions/actions/composer/[email protected] | ||
|
||
- name: ♻️ Restore cached dependencies installed with composer | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.COMPOSER_CACHE_DIR }} | ||
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }} | ||
restore-keys: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}- | ||
|
||
- name: 📥 Install "${{ matrix.dependencies }}" dependencies | ||
uses: wayofdev/gh-actions/actions/composer/[email protected] | ||
with: | ||
dependencies: ${{ matrix.dependencies }} | ||
|
||
- name: 🔍 Run static analysis using rector/rector | ||
run: composer refactor:ci |
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 |
---|---|---|
|
@@ -58,7 +58,7 @@ jobs: | |
uses: wayofdev/gh-actions/actions/composer/[email protected] | ||
|
||
- name: ♻️ Restore cached dependencies installed with composer | ||
uses: actions/cache@v4.0.2 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.COMPOSER_CACHE_DIR }} | ||
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }} | ||
|
@@ -109,7 +109,7 @@ jobs: | |
uses: wayofdev/gh-actions/actions/composer/[email protected] | ||
|
||
- name: ♻️ Restore cached dependencies installed with composer | ||
uses: actions/cache@v4.0.2 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.COMPOSER_CACHE_DIR }} | ||
key: php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }} | ||
|
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
Oops, something went wrong.