Skip to content

Support Laravel 12

Support Laravel 12 #10

Workflow file for this run

name: Tests
on: [push]
jobs:
phpunit:
runs-on: ubuntu-latest
matrix:

Check failure on line 8 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 8, Col: 5): Unexpected value 'matrix'
php:
- 8.3
- 8.4
laravel:
- 11
- 12
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- uses: ramsey/composer-install@v3
with:
dependency-versions: highest
composer-options: --with laravel/framework:^${{ matrix.laravel }}
- name: Run PHPUnit tests
run: vendor/bin/phpunit