fix: add rector-safe.php path for when library is root project #6
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: CI | |
| on: | |
| push: | |
| branches: [php8.4] | |
| pull_request: | |
| branches: [php8.4] | |
| jobs: | |
| qa: | |
| name: QA Pipeline | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| tools: composer:v2 | |
| coverage: xdebug | |
| extensions: json, tokenizer, mbstring | |
| - name: Run QA Pipeline | |
| run: bash ci.bash |