Unset scopes from transformers after transforming to avoid cyclic ref… #115
This file contains hidden or 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: The PHP League Style Checks | |
| on: [push, pull_request] | |
| jobs: | |
| style: | |
| runs-on: ubuntu-latest | |
| name: The PHP League Style Checks | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '7.4' | |
| - name: Download dependencies | |
| uses: ramsey/composer-install@v3 | |
| - name: Check Coding Style | |
| run: composer lint |