feat: add ai setup for lite apps #9
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: Run Tests | |
| on: ["push","pull_request"] | |
| jobs: | |
| tests: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: ["ubuntu-latest","macos-latest","windows-latest"] | |
| php: ["8.2","8.3","8.4"] | |
| name: PHP ${{ matrix.php }} - ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: json, zip | |
| tools: composer:v2 | |
| coverage: xdebug | |
| - name: Install PHP dependencies | |
| run: composer update --no-interaction --no-progress | |
| - name: Run Tests | |
| run: composer run test -- --flags=coverage |