style: upgrade mago and apply formatting #2559
Workflow file for this run
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: Coding Conventions | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| check-style: | |
| name: Run style check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.4 | |
| coverage: none | |
| - name: Install dependencies | |
| run: | | |
| composer update --prefer-dist --no-interaction | |
| composer mago:install-binary | |
| - name: Run Mago | |
| run: | | |
| ./vendor/bin/mago fmt --dry-run | |
| ./vendor/bin/mago lint --reporting-format=github | |
| ./vendor/bin/mago analyze --reporting-format=github | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Format | |
| run: bun run fmt:check |