Skip to content

v3.0.3

v3.0.3 #114

Workflow file for this run

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