-
-
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.
- Loading branch information
Showing
1 changed file
with
78 additions
and
0 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,78 @@ | ||
# When a PR is opened or a push is made, perform | ||
# a static analysis check on the code using Rector. | ||
name: Rector | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'app/**.php' | ||
- 'tests/**.php' | ||
- '.github/workflows/test-rector.yml' | ||
- composer.json | ||
- rector.php | ||
- '**.neon.dist' | ||
|
||
push: | ||
paths: | ||
- 'app/**.php' | ||
- 'tests/**.php' | ||
- '.github/workflows/test-rector.yml' | ||
- composer.json | ||
- rector.php | ||
- '**.neon.dist' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: PHP ${{ matrix.php-versions }} Analyze code (Rector) | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3'] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extensions: intl | ||
|
||
- name: Use latest Composer | ||
run: composer self-update | ||
|
||
- name: Validate composer.json | ||
run: composer validate --strict | ||
|
||
- name: Get composer cache directory | ||
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.COMPOSER_CACHE_FILES_DIR }} | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
|
||
- name: Install dependencies | ||
run: composer update --ansi --no-interaction | ||
|
||
- name: Rector Cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: /tmp/rector | ||
key: ${{ runner.os }}-rector-${{ github.run_id }} | ||
restore-keys: ${{ runner.os }}-rector- | ||
|
||
- run: mkdir -p /tmp/rector | ||
|
||
- name: Run static analysis | ||
run: composer rector |