Skip to content

Commit

Permalink
Create test-rector.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ddevsr authored Apr 1, 2024
1 parent 5acf948 commit 9883bc1
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .github/workflows/test-rector.yml
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

0 comments on commit 9883bc1

Please sign in to comment.