diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 3b0e5db..3abfaa0 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,15 +9,23 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest ] - php: [ 8.1, 8.2 ] - laravel: [ 9.*, 10.* ] + php: [ 8.1, 8.2, 8.3 ] + laravel: [ 9.*, 10.*, 11.* ] include: + - laravel: 11.* + testbench: 9.* + stability: prefer-stable - laravel: 10.* testbench: 8.* stability: prefer-stable - laravel: 9.* testbench: 7.* stability: prefer-stable + exclude: + - php: 8.3 + laravel: 9.* + - php: 8.1 + laravel: 11.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }} @@ -35,7 +43,8 @@ jobs: - name: Get Composer Cache Directory id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" + run: | + echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache composer dependencies uses: actions/cache@v2