chore(deps): bump actions/checkout from 5 to 6 #437
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: Setup & test | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| tests: | |
| name: Composer P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| php: [ '8.2', '8.3' ] | |
| laravel: [ 12.*, 11.* ] | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: | | |
| composer install --no-interaction --no-progress | |
| - name: Run composer validate | |
| run: | | |
| composer validate --strict | |
| - name: Run tests | |
| run: | | |
| composer test |