From 02603426a66be60247c48564a71e1fd17465245d Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 16 Feb 2023 09:06:26 +0100 Subject: [PATCH] Use single PHP version in CI --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index faaa7a6..7092292 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,6 @@ jobs: strategy: fail-fast: true matrix: - php: ["8.1"] laravel: [9, 10] name: Tests (PHPUnit) - L${{ matrix.laravel }} @@ -20,7 +19,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: ${{ matrix.php }} + php-version: '8.1' - name: Install dependencies run: composer require "laravel/framework:^${{matrix.laravel}}.0"