diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07ec0cd..f80b836 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,9 +13,10 @@ on: jobs: phpunit: + name: Tests (Pest) L${{ matrix.laravel }} strategy: matrix: - laravel: [6, 8] + laravel: [6, 8, 9] name: Tests (PHPUnit) runs-on: ubuntu-latest @@ -23,7 +24,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install composer dependencies - run: composer require "laravel/framework:^${{matrix.laravel}}.0.0" + run: composer require "laravel/framework:^${{matrix.laravel}}.0" - name: Run tests run: vendor/bin/phpunit diff --git a/composer.json b/composer.json index 4ecfc42..8fa30fc 100644 --- a/composer.json +++ b/composer.json @@ -16,10 +16,10 @@ } }, "require": { - "illuminate/translation": "^8.0||^6.0" + "illuminate/translation": "^9.0||^8.0||^6.0" }, "require-dev": { - "orchestra/testbench": "^6.0||^4.0", + "orchestra/testbench": "^9.0||^6.0||^4.0", "phpunit/phpunit": "^9.5", "nunomaduro/larastan": "^0.6.11" },