From a13468e8068675fa42d38bc3e25b66356f4d0e24 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Fri, 17 Feb 2023 16:04:29 +0100 Subject: [PATCH] Update CI file --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a52000b..cb216352 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,17 +16,18 @@ jobs: strategy: matrix: include: - - laravel: "9.38" + - laravel: 9 php: "8.0" - laravel: 10 php: "8.1" + steps: - name: Checkout uses: actions/checkout@v2 - name: Install Composer dependencies run: | - composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update + composer require "laravel/framework:^${{ matrix.laravel }}" --no-interaction --no-update composer update --prefer-dist --no-interaction - name: Run tests run: ./vendor/bin/pest