Chore: Update Laravel framework to v12.15 and adjust development depe… #85
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: Formats | |
| on: ['push', 'pull_request'] | |
| jobs: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ubuntu-latest] | |
| php: [8.4] | |
| dependency-version: [prefer-stable] | |
| name: Formats P${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Cache dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.composer/cache/files | |
| key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: dom, mbstring, zip | |
| tools: prestissimo | |
| coverage: pcov | |
| - name: Install Composer dependencies | |
| run: composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist | |
| - name: Coding Style Checks | |
| run: composer test:lint | |
| - name: Type Checks | |
| run: composer test:types |