Skip to content

limit test versions for php compatibility #24

limit test versions for php compatibility

limit test versions for php compatibility #24

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
# Laravel 9
- php: '8.0'
illuminate: 9
- php: '8.1'
illuminate: 9
# Laravel 10
- php: '8.1'
illuminate: 10
- php: '8.2'
illuminate: 10
# Laravel 11
- php: '8.2'
illuminate: 11
- php: '8.3'
illuminate: 11
steps:
- uses: actions/checkout@v3
- name: "Run tests on PHP: ${{ matrix.php }}, Illuminate: ${{ matrix.illuminate }}"
run: docker build . --build-arg PHP_VERSION=${{ matrix.php }} --build-arg ILLUMINATE_VERSION=${{ matrix.illuminate }}