Skip to content

Actually support all intended versions of Laravel and remove a few tr… #40

Actually support all intended versions of Laravel and remove a few tr…

Actually support all intended versions of Laravel and remove a few tr… #40

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
laravel: [11, 12, 13]
php: [8.3, 8.4, 8.5]
steps:
- uses: actions/checkout@v6
- name: test against Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }}
run: docker build . --build-arg PHP_VERSION=${{ matrix.php }} --build-arg LARAVEL=${{ matrix.laravel }}