From bc9054277c477b55e6ad0ad26d4e23118f4c34ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Fri, 12 Jan 2024 21:31:37 +0100 Subject: [PATCH] test more PHP versions in CI --- .github/workflows/ci.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 874d1ee..2640da4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,10 +16,20 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - laravel: [10] + include: + - laravel: 10 + php: 8.1 + - laravel: 10 + php: 8.2 + - laravel: 10 + php: 8.3 steps: - uses: actions/checkout@v2 + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{matrix.php}} - name: Install composer dependencies run: composer require "illuminate/support:^${{ matrix.laravel }}.0" - name: Run tests