fix: patch up create command welcome #1
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
| # Generated by Leaf Alchemy from alchemy.yml — edits will be overwritten on the next alchemy run. | |
| # Remove this header to take ownership of this file. | |
| name: Lint code | |
| on: ["push","pull_request"] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| extensions: json, zip | |
| tools: composer:v2 | |
| coverage: none | |
| - name: Install PHP dependencies | |
| run: composer update --no-interaction --no-progress | |
| - name: Run Linter | |
| run: composer run lint -- --check |