[experiment] skip beforeTraverse() and afterTraverse() as never used #1305
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
| # see https://github.com/rectorphp/rector/issues/9416 | |
| name: PHPUnit and PHPStan Compat Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: null | |
| jobs: | |
| compat_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.2 | |
| coverage: none | |
| - run: composer create-project "rector/rector-compat-tests:dev-main" . | |
| - run: vendor/bin/phpunit tests/PHPStan | |
| - run: vendor/bin/phpunit tests/Rector | |
| - run: vendor/bin/phpunit tests | |
| - run: vendor/bin/phpunit |