Skip to content

chore(deps): bump actions/checkout from 5 to 6 #437

chore(deps): bump actions/checkout from 5 to 6

chore(deps): bump actions/checkout from 5 to 6 #437

Workflow file for this run

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