Remove the alert #1644
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
| on: [push] | |
| name: Mago Code Analysis and Linting | |
| jobs: | |
| mago: | |
| name: Mago | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "📥 Fetching Repository Contents" | |
| uses: actions/checkout@v4.1.1 | |
| - name: "🔧 Setup PHP" | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.1' | |
| - name: Install dependencies | |
| run: composer install --dev --prefer-dist --no-progress | |
| - name: "✅ Mago Lint" | |
| run: vendor/bin/mago lint | |
| - name: "🔎 Mago Analyze" | |
| run: vendor/bin/mago analyze |