From e531f96c4bfe5c450c54e9306d769078b02ae93f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 21 Feb 2023 17:47:25 +0100 Subject: [PATCH] specify full laravel versions to support using dev-master in PRs --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ecb863b..0fdee61d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,10 +16,10 @@ jobs: strategy: matrix: include: - - laravel: 9 + - laravel: "^9.0" php: "8.0" - - laravel: 10 - php: "8.1" + - laravel: "^10.0" + php: "8.2" steps: - name: Checkout @@ -27,7 +27,7 @@ jobs: - name: Install Composer dependencies run: | - composer require "laravel/framework:^${{ matrix.laravel }}.0" --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