fix(pivot): only use unique classes in the pivot union (Fixes #1606) … #384
Workflow file for this run
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
name: Fix Code Style | |
on: | |
push: | |
jobs: | |
fix-style: | |
name: Fix Code Style | |
timeout-minutes: 15 | |
runs-on: ubuntu-22.04 | |
env: | |
COMPOSER_NO_INTERACTION: 1 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
coverage: none | |
- name: Install dependencies | |
run: composer update --prefer-dist --no-progress | |
- run: composer fix-style | |
continue-on-error: true | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: composer fix-style | |
commit_author: laravel-ide-helper <[email protected]> |