docs: fix quickstart quide to be up to date #326
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: Lint | |
| on: push | |
| jobs: | |
| mago: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "checkout" | |
| uses: "actions/checkout@v4" | |
| - name: "installing PHP" | |
| uses: "shivammathur/setup-php@v2" | |
| with: | |
| php-version: "8.3" | |
| - name: "installing dependencies" | |
| run: composer install --no-interaction --prefer-dist --optimize-autoloader | |
| - name: "formatting" | |
| run: php vendor/bin/mago fmt --dry-run | |
| - name: "linting" | |
| run: php vendor/bin/mago lint --reporting-format=github |