File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99jobs :
1010 test :
11- runs-on : ubuntu-latest
11+ runs-on : ${{ matrix.os }}
1212 strategy :
1313 fail-fast : true
1414 matrix :
3939 echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
4040
4141 - name : Install dependencies
42+ shell : bash
4243 run : |
43- composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
44- composer update --${{ matrix.stability }} --prefer-dist --no-interaction
44+ composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
45+ if [ "${{ matrix.stability }}" = "prefer-lowest" ]; then
46+ composer update --prefer-lowest --prefer-dist --no-interaction --with="orchestra/canvas:^9.0"
47+ else
48+ composer update --prefer-stable --prefer-dist --no-interaction
49+ fi
4550
4651 - name : List Installed Dependencies
4752 run : composer show -D
You can’t perform that action at this time.
0 commit comments