diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index efeb34ab..b5d840b0 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - php: [8.0, 8.1] + php: [8.0, 8.1, 8.2] laravel: [9.*, 8.*] stability: [prefer-lowest, prefer-stable] @@ -41,7 +41,7 @@ jobs: - name: Install dependencies run: | - composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update + composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon:^2.62.1" --no-interaction --no-update composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-suggest - name: Execute tests diff --git a/tests/TestCase.php b/tests/TestCase.php index 3600f306..40487cbf 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -15,6 +15,8 @@ class TestCase extends \Orchestra\Testbench\TestCase { use MakesHttpRequests; + protected $fakeClient = null; + protected function setUp(): void { ray()->newScreen($this->getName());