diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f4f6b4d..60648e1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ jobs: test: runs-on: ${{ matrix.os }} strategy: - fail-fast: true + fail-fast: false matrix: os: [ ubuntu-latest ] php: [ 7.4, 8.2 ] @@ -33,7 +33,8 @@ jobs: - laravel: 10.* php: 8.0 - name: P${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} +# name: P${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} + name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} steps: - name: Checkout code @@ -52,8 +53,13 @@ jobs: extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick coverage: xdebug +# - name: Install dependencies +# run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --ansi -v + - name: Install dependencies - run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --ansi -v + run: | + composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:>=2.62.1" --no-interaction --no-update + composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --ansi -v - name: Execute tests run: composer test-coverage