Skip to content

Implement Sort & Period Search method #8

Implement Sort & Period Search method

Implement Sort & Period Search method #8

Workflow file for this run

name: Rector
on:
pull_request:
paths:
- "app/**"
- "bootstrap/**"
- "config/**"
- "database/**"
- "routes/**"
- "tests/**"
- "composer.json"
- "composer.lock"
- "rector.php"
- ".github/workflows/rector.yml"
push:
branches:
- main
- 'feat/*'
- 'fix/*'
- 'hotfix/*'
- 'chore/*'
jobs:
rector:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.2"
coverage: none
tools: composer
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction
- name: Run Rector dry-run
run: vendor/bin/rector process --dry-run