From 3640d095f803f999310d81f33710cb5d3a2a4c16 Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Tue, 9 Aug 2022 15:10:02 +0500 Subject: [PATCH] removed extensions config and php version from matrix --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc3e7187..06dbd950 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,6 @@ jobs: strategy: matrix: - php: ['8.1'] laravel: ['^8.0', '^9.0'] services: @@ -70,8 +69,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: ${{ matrix.php }} - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, sqlsrv, pdo_sqlsrv, redis, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo + php-version: 8.1 coverage: pcov - name: Get composer cache directory @@ -82,13 +80,12 @@ jobs: uses: actions/cache@v2 with: path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.laravel }}-${{ hashFiles('**/composer.lock') }} + key: ${{ runner.os }}-${{ matrix.laravel }}-${{ hashFiles('**/composer.lock') }} - name: Install Composer dependencies run: | composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update composer update --prefer-dist --no-interaction - - name: Run tests run: ./vendor/bin/pest env: